Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 770 Bytes

File metadata and controls

30 lines (21 loc) · 770 Bytes

Id

Properties

Name Type Description Notes
id int [optional]
legacy_id int [optional]

Example

from clientapi_billingo.models.id import Id

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

# convert the object into a dict
id_dict = id_instance.to_dict()
# create an instance of Id from a dict
id_from_dict = Id.from_dict(id_dict)

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