Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 926 Bytes

InfoType.md

File metadata and controls

31 lines (22 loc) · 926 Bytes

InfoType

Properties

Name Type Description Notes
version str [optional]
update_body str [optional]
update InfoTypeUpdate [optional]

Example

from semaphore_api.models.info_type import InfoType

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

# convert the object into a dict
info_type_dict = info_type_instance.to_dict()
# create an instance of InfoType from a dict
info_type_from_dict = InfoType.from_dict(info_type_dict)

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