Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

File metadata and controls

29 lines (20 loc) · 1.11 KB

FiscalizationConsentRequest

Properties

Name Type Description Notes
consented_by str Identifier of the user who provided consent (e.g., email or user ID)

Example

from cloudbeds_fiscal_document.models.fiscalization_consent_request import FiscalizationConsentRequest

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

# convert the object into a dict
fiscalization_consent_request_dict = fiscalization_consent_request_instance.to_dict()
# create an instance of FiscalizationConsentRequest from a dict
fiscalization_consent_request_from_dict = FiscalizationConsentRequest.from_dict(fiscalization_consent_request_dict)

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