Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.3 KB

File metadata and controls

36 lines (27 loc) · 1.3 KB

DocumentOrganization

Properties

Name Type Description Notes
name str [optional]
tax_number str [optional]
bank_account DocumentBankAccount [optional]
address Address [optional]
small_taxpayer bool [optional]
ev_number str [optional]
eu_tax_number str [optional]
cash_settled bool [optional]

Example

from clientapi_billingo.models.document_organization import DocumentOrganization

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

# convert the object into a dict
document_organization_dict = document_organization_instance.to_dict()
# create an instance of DocumentOrganization from a dict
document_organization_from_dict = DocumentOrganization.from_dict(document_organization_dict)

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