Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.22 KB

Manufacturer.md

File metadata and controls

35 lines (27 loc) · 1.22 KB

Manufacturer

Properties

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]

Example

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)

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