Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.33 KB

File metadata and controls

36 lines (27 loc) · 1.33 KB

PayoutOrder

a payout order

Properties

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.

Example

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)

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