| Name | Type | Description | Notes |
|---|---|---|---|
| emails | List[str] | [optional] |
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)