Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

EazzyPayMerchant

Properties

Name Type Description Notes
name str Merchant name [optional]
tillnumber str Merchant till number [optional]
outlets List[EazzyPayMerchantOutletsInner] [optional]

Example

from jenga_client.models.eazzy_pay_merchant import EazzyPayMerchant

# TODO update the JSON string below
json = "{}"
# create an instance of EazzyPayMerchant from a JSON string
eazzy_pay_merchant_instance = EazzyPayMerchant.from_json(json)
# print the JSON string representation of the object
print(EazzyPayMerchant.to_json())

# convert the object into a dict
eazzy_pay_merchant_dict = eazzy_pay_merchant_instance.to_dict()
# create an instance of EazzyPayMerchant from a dict
eazzy_pay_merchant_from_dict = EazzyPayMerchant.from_dict(eazzy_pay_merchant_dict)

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