Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

DocumentCancellation.md

File metadata and controls

30 lines (21 loc) · 1.02 KB

DocumentCancellation

Properties

Name Type Description Notes
cancellation_reason str [optional]
cancellation_recipients str [optional]

Example

from clientapi_billingo.models.document_cancellation import DocumentCancellation

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

# convert the object into a dict
document_cancellation_dict = document_cancellation_instance.to_dict()
# create an instance of DocumentCancellation from a dict
document_cancellation_from_dict = DocumentCancellation.from_dict(document_cancellation_dict)

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