Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 875 Bytes

File metadata and controls

29 lines (20 loc) · 875 Bytes

SendDocument

Properties

Name Type Description Notes
emails List[str] [optional]

Example

from clientapi_billingo.models.send_document import SendDocument

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

# convert the object into a dict
send_document_dict = send_document_instance.to_dict()
# create an instance of SendDocument from a dict
send_document_from_dict = SendDocument.from_dict(send_document_dict)

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