Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.09 KB

AnnotationFilters.md

File metadata and controls

30 lines (21 loc) · 1.09 KB

AnnotationFilters

Properties

Name Type Description Notes
action str [optional]
attributes List[str] A set of granular attributes to include between every pair of coordinates along the route. This can significantly increase the response size. [optional]

Example

from stadiamaps.models.annotation_filters import AnnotationFilters

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

# convert the object into a dict
annotation_filters_dict = annotation_filters_instance.to_dict()
# create an instance of AnnotationFilters from a dict
annotation_filters_from_dict = AnnotationFilters.from_dict(annotation_filters_dict)

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