# PaymentType

## Properties

| Name                  | Type    | Description | Notes |
| --------------------- | ------- | ----------- | ----- |
| **icon**              | **str** |             |       |
| **name**              | **str** |             |       |
| **payment\_type\_id** | **str** |             |       |

## Example

```python
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\]](https://docs.usemoon.ai/sdks/python/..#documentation-for-models) [\[Back to API list\]](https://docs.usemoon.ai/sdks/python/..#documentation-for-api-endpoints) [\[Back to README\]](https://docs.usemoon.ai/sdks/python)
