Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.28 KB

DocumentPartner.md

File metadata and controls

38 lines (29 loc) · 1.28 KB

DocumentPartner

Properties

Name Type Description Notes
id int [optional]
name str [optional]
address Address [optional]
emails List[str] [optional]
taxcode str [optional]
iban str [optional]
swift str [optional]
account_number str [optional]
phone str [optional]
tax_type PartnerTaxType [optional]

Example

from clientapi_billingo.models.document_partner import DocumentPartner

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

# convert the object into a dict
document_partner_dict = document_partner_instance.to_dict()
# create an instance of DocumentPartner from a dict
document_partner_from_dict = DocumentPartner.from_dict(document_partner_dict)

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