Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.1 KB

File metadata and controls

33 lines (24 loc) · 1.1 KB

RecipientDocument

Properties

Name Type Description Notes
type str [optional]
number str [optional]
issuing_country str [optional]
issue_date datetime [optional]
expiration_date datetime [optional]

Example

from cloudbeds_fiscal_document.models.recipient_document import RecipientDocument

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

# convert the object into a dict
recipient_document_dict = recipient_document_instance.to_dict()
# create an instance of RecipientDocument from a dict
recipient_document_from_dict = RecipientDocument.from_dict(recipient_document_dict)

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