Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Latest commit

 

History

History
30 lines (21 loc) · 914 Bytes

InvoiceList.md

File metadata and controls

30 lines (21 loc) · 914 Bytes

InvoiceList

Properties

Name Type Description Notes
href str [optional]
invoices List[Invoice] [optional]

Example

from equinix_metal.models.invoice_list import InvoiceList

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

# convert the object into a dict
invoice_list_dict = invoice_list_instance.to_dict()
# create an instance of InvoiceList from a dict
invoice_list_form_dict = invoice_list.from_dict(invoice_list_dict)

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