Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.01 KB

OfferMerchantsResponse.md

File metadata and controls

28 lines (20 loc) · 1.01 KB

OfferMerchantsResponse

Properties

Name Type Description Notes
offer OfferMerchants [optional]

Example

from sparkfly_client.models.offer_merchants_response import OfferMerchantsResponse

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

# convert the object into a dict
offer_merchants_response_dict = offer_merchants_response_instance.to_dict()
# create an instance of OfferMerchantsResponse from a dict
offer_merchants_response_form_dict = offer_merchants_response.from_dict(offer_merchants_response_dict)

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