The payout information of the payout order.
Name | Type | Description | Notes |
---|---|---|---|
payout_method | PayoutMethod |
from conekta.models.payout import Payout
# TODO update the JSON string below
json = "{}"
# create an instance of Payout from a JSON string
payout_instance = Payout.from_json(json)
# print the JSON string representation of the object
print(Payout.to_json())
# convert the object into a dict
payout_dict = payout_instance.to_dict()
# create an instance of Payout from a dict
payout_from_dict = Payout.from_dict(payout_dict)