Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 824 Bytes

Warning.md

File metadata and controls

30 lines (21 loc) · 824 Bytes

Warning

Properties

Name Type Description Notes
text str [optional]
code int [optional]

Example

from stadiamaps.models.warning import Warning

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

# convert the object into a dict
warning_dict = warning_instance.to_dict()
# create an instance of Warning from a dict
warning_from_dict = Warning.from_dict(warning_dict)

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