PaymentType

Properties

Name
Type
Description
Notes

icon

str

name

str

payment_type_id

str

Example

from moonsdk.models.payment_type import PaymentType

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

# convert the object into a dict
payment_type_dict = payment_type_instance.to_dict()
# create an instance of PaymentType from a dict
payment_type_form_dict = payment_type.from_dict(payment_type_dict)

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

Last updated