Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.25 KB

PaymentMethodDetail.md

File metadata and controls

35 lines (26 loc) · 1.25 KB

PaymentMethodDetail

Payment method object

Properties

Name Type Description Notes
limits PaymentMethodLimit [optional]
logo_url str
name PaymentMethod
settings PaymentMethodSettings
status PaymentMethodStatus
summary_url str

Example

from openapi_client.models.payment_method_detail import PaymentMethodDetail

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

# convert the object into a dict
payment_method_detail_dict = payment_method_detail_instance.to_dict()
# create an instance of PaymentMethodDetail from a dict
payment_method_detail_from_dict = PaymentMethodDetail.from_dict(payment_method_detail_dict)

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