Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 842 Bytes

Payout.md

File metadata and controls

30 lines (21 loc) · 842 Bytes

Payout

The payout information of the payout order.

Properties

Name Type Description Notes
payout_method PayoutMethod

Example

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)

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