| Name |
Type |
Description |
Notes |
| company_name |
object |
|
|
| address1 |
object |
|
|
| address2 |
object |
|
|
| city |
object |
|
|
| state |
object |
|
|
| country |
object |
|
|
| phone_number |
object |
|
|
| zip |
object |
|
|
| currency_abbreviation |
object |
|
[optional] |
| id |
str |
|
|
| created_at |
object |
|
|
| updated_at |
object |
|
|
| industry |
object |
|
|
| industry_name |
object |
|
|
| info_genesis_property_id |
object |
|
|
| is_frozen |
object |
|
|
| billing_contact_employee_id |
object |
|
|
| marketing_contact_employee_id |
object |
|
|
| technical_contact_employee_id |
object |
|
|
| customer_service_contact_employee_id |
object |
|
|
| stripe_customer_id |
object |
|
|
| is_payment_method_provided |
object |
|
|
| plan_nickname |
object |
|
|
| max_sms_count |
object |
|
|
| is_sms_agreement |
object |
|
[optional] |
| is_white_labeled |
object |
|
[optional] |
| is_featured |
object |
|
[optional] |
from wallet.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]