| Name |
Type |
Description |
Notes |
| url |
str |
|
[optional] |
| string |
str |
|
[optional] |
from cloudbeds_fiscal_document.models.government_integration_qr import GovernmentIntegrationQr
# TODO update the JSON string below
json = "{}"
# create an instance of GovernmentIntegrationQr from a JSON string
government_integration_qr_instance = GovernmentIntegrationQr.from_json(json)
# print the JSON string representation of the object
print(GovernmentIntegrationQr.to_json())
# convert the object into a dict
government_integration_qr_dict = government_integration_qr_instance.to_dict()
# create an instance of GovernmentIntegrationQr from a dict
government_integration_qr_from_dict = GovernmentIntegrationQr.from_dict(government_integration_qr_dict)
[Back to Model list] [Back to API list] [Back to README]