Name | Type | Description | Notes |
---|---|---|---|
id | int | [optional] | |
name | str | [optional] | |
description | str | [optional] | |
is_active | bool | [optional] | |
location | ManufacturerLocation | [optional] | |
contacts | Contacts | [optional] | |
merchant_ids | List[int] | [optional] | |
merchants | List[MerchantResponse] | [optional] |
from sparkfly_client.models.manufacturer import Manufacturer
# TODO update the JSON string below
json = "{}"
# create an instance of Manufacturer from a JSON string
manufacturer_instance = Manufacturer.from_json(json)
# print the JSON string representation of the object
print Manufacturer.to_json()
# convert the object into a dict
manufacturer_dict = manufacturer_instance.to_dict()
# create an instance of Manufacturer from a dict
manufacturer_form_dict = manufacturer.from_dict(manufacturer_dict)