a payout order
| Name | Type | Description | Notes |
|---|---|---|---|
| allowed_payout_methods | List[str] | The payout methods that are allowed for the payout order. | |
| amount | int | The amount of the payout order. | |
| currency | str | The currency in which the payout order is made. | [default to 'MXN'] |
| customer_info | CustomerInfoJustCustomerId | ||
| metadata | Dict[str, object] | The metadata of the payout order. | [optional] |
| payout | Payout | ||
| reason | str | The reason for the payout order. |
from conekta.models.payout_order import PayoutOrder
# TODO update the JSON string below
json = "{}"
# create an instance of PayoutOrder from a JSON string
payout_order_instance = PayoutOrder.from_json(json)
# print the JSON string representation of the object
print(PayoutOrder.to_json())
# convert the object into a dict
payout_order_dict = payout_order_instance.to_dict()
# create an instance of PayoutOrder from a dict
payout_order_from_dict = PayoutOrder.from_dict(payout_order_dict)