Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

File metadata and controls

30 lines (21 loc) · 1 KB

SendInvoiceResponse

Properties

Name Type Description Notes
data SendInvoiceResponseData
meta Meta

Example

from ecuapi.models.send_invoice_response import SendInvoiceResponse

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

# convert the object into a dict
send_invoice_response_dict = send_invoice_response_instance.to_dict()
# create an instance of SendInvoiceResponse from a dict
send_invoice_response_from_dict = SendInvoiceResponse.from_dict(send_invoice_response_dict)

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