Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

ReceivedDocumentInfoDefaultValues.md

File metadata and controls

30 lines (21 loc) · 1.17 KB

ReceivedDocumentInfoDefaultValues

Received document default values

Properties

Name Type Description Notes
detailed bool [optional]

Example

from fattureincloud_python_sdk.models.received_document_info_default_values import ReceivedDocumentInfoDefaultValues

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

# convert the object into a dict
received_document_info_default_values_dict = received_document_info_default_values_instance.to_dict()
# create an instance of ReceivedDocumentInfoDefaultValues from a dict
received_document_info_default_values_from_dict = ReceivedDocumentInfoDefaultValues.from_dict(received_document_info_default_values_dict)

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