Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

OnlineSzamlaStatus.md

File metadata and controls

31 lines (22 loc) · 1.07 KB

OnlineSzamlaStatus

Properties

Name Type Description Notes
transaction_id str [optional]
status str [optional]
messages List[OnlineSzamlaStatusMessage] [optional]

Example

from clientapi_billingo.models.online_szamla_status import OnlineSzamlaStatus

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

# convert the object into a dict
online_szamla_status_dict = online_szamla_status_instance.to_dict()
# create an instance of OnlineSzamlaStatus from a dict
online_szamla_status_from_dict = OnlineSzamlaStatus.from_dict(online_szamla_status_dict)

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