Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.03 KB

MerchantStoreOfferIdList.md

File metadata and controls

28 lines (20 loc) · 1.03 KB

MerchantStoreOfferIdList

Properties

Name Type Description Notes
offer_ids List[int] [optional]

Example

from sparkfly_client.models.merchant_store_offer_id_list import MerchantStoreOfferIdList

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

# convert the object into a dict
merchant_store_offer_id_list_dict = merchant_store_offer_id_list_instance.to_dict()
# create an instance of MerchantStoreOfferIdList from a dict
merchant_store_offer_id_list_form_dict = merchant_store_offer_id_list.from_dict(merchant_store_offer_id_list_dict)

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