Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.43 KB

TagModelUpdate.md

File metadata and controls

34 lines (25 loc) · 1.43 KB

TagModelUpdate

Properties

Name Type Description Notes
var_date date The date to which the tag is applicable. [optional]
description str [optional]
latitude float Latitude of the tag's location, if applicable. Can be used to draw a map. [optional]
longitude float Latitude of the tag's location, if applicable. Can be used to draw a map. [optional]
tag str The tag [optional]
zoom_level int Zoom level for the map, if drawn. This to set the box right. Unfortunately this is a proprietary value because each map provider has different zoom levels. [optional]

Example

from firefly_iii_client.models.tag_model_update import TagModelUpdate

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

# convert the object into a dict
tag_model_update_dict = tag_model_update_instance.to_dict()
# create an instance of TagModelUpdate from a dict
tag_model_update_form_dict = tag_model_update.from_dict(tag_model_update_dict)

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