Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 1.4 KB

Merchant.md

File metadata and controls

41 lines (33 loc) · 1.4 KB

Merchant

Properties

Name Type Description Notes
id int [optional]
created_at str [optional]
updated_at str [optional]
name str [optional]
logo str [optional]
is_active bool [optional]
account_id int [optional]
billing_arrangement str [optional]
supports_barcode bool [optional]
redemption_identifier_type int [optional]
location Location [optional]
channels List[Channel] [optional]
contacts Contacts [optional]
linked_by_channel bool [optional]

Example

from sparkfly_client.models.merchant import Merchant

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

# convert the object into a dict
merchant_dict = merchant_instance.to_dict()
# create an instance of Merchant from a dict
merchant_form_dict = merchant.from_dict(merchant_dict)

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