Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.12 KB

ManufacturerMerchantsResponse.md

File metadata and controls

28 lines (20 loc) · 1.12 KB

ManufacturerMerchantsResponse

Properties

Name Type Description Notes
manufacturer ManufacturerMerchants [optional]

Example

from sparkfly_client.models.manufacturer_merchants_response import ManufacturerMerchantsResponse

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

# convert the object into a dict
manufacturer_merchants_response_dict = manufacturer_merchants_response_instance.to_dict()
# create an instance of ManufacturerMerchantsResponse from a dict
manufacturer_merchants_response_form_dict = manufacturer_merchants_response.from_dict(manufacturer_merchants_response_dict)

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