Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1018 Bytes

PaymentMethodList.md

File metadata and controls

30 lines (21 loc) · 1018 Bytes

PaymentMethodList

Properties

Name Type Description Notes
href str [optional]
payment_methods List[PaymentMethod] [optional]

Example

from equinix_metal.models.payment_method_list import PaymentMethodList

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

# convert the object into a dict
payment_method_list_dict = payment_method_list_instance.to_dict()
# create an instance of PaymentMethodList from a dict
payment_method_list_form_dict = payment_method_list.from_dict(payment_method_list_dict)

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