Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1016 Bytes

File metadata and controls

30 lines (20 loc) · 1016 Bytes

CreateReceiptResponse

Properties

Name Type Description Notes
data Receipt [optional]

Example

from fattureincloud_python_sdk.models.create_receipt_response import CreateReceiptResponse

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

# convert the object into a dict
create_receipt_response_dict = create_receipt_response_instance.to_dict()
# create an instance of CreateReceiptResponse from a dict
create_receipt_response_from_dict = CreateReceiptResponse.from_dict(create_receipt_response_dict)

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