Payment method object
Name | Type | Description | Notes |
---|---|---|---|
limits | PaymentMethodLimit | [optional] | |
logo_url | str | ||
name | PaymentMethod | ||
settings | PaymentMethodSettings | ||
status | PaymentMethodStatus | ||
summary_url | str |
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)