Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1.24 KB

CreateReceivedDocumentRequest.md

File metadata and controls

31 lines (21 loc) · 1.24 KB

CreateReceivedDocumentRequest

Properties

Name Type Description Notes
pending_id int Pending received document id of the document from which the new document is created. [optional]
data ReceivedDocument [optional]

Example

from fattureincloud_python_sdk.models.create_received_document_request import CreateReceivedDocumentRequest

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

# convert the object into a dict
create_received_document_request_dict = create_received_document_request_instance.to_dict()
# create an instance of CreateReceivedDocumentRequest from a dict
create_received_document_request_from_dict = CreateReceivedDocumentRequest.from_dict(create_received_document_request_dict)

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