Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1 KB

ChartDataPoint.md

File metadata and controls

29 lines (20 loc) · 1 KB

ChartDataPoint

Properties

Name Type Description Notes
key str The key is the label of the value, so for example: '2018-01-01' => 13 or 'Groceries' => -123. [optional]

Example

from firefly_iii_client.models.chart_data_point import ChartDataPoint

# TODO update the JSON string below
json = "{}"
# create an instance of ChartDataPoint from a JSON string
chart_data_point_instance = ChartDataPoint.from_json(json)
# print the JSON string representation of the object
print(ChartDataPoint.to_json())

# convert the object into a dict
chart_data_point_dict = chart_data_point_instance.to_dict()
# create an instance of ChartDataPoint from a dict
chart_data_point_form_dict = chart_data_point.from_dict(chart_data_point_dict)

[Back to Model list] [Back to API list] [Back to README]