Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 988 Bytes

MerchantResponse.md

File metadata and controls

29 lines (21 loc) · 988 Bytes

MerchantResponse

Properties

Name Type Description Notes
merchant Merchant [optional]
errors Dict[str, str] [optional]

Example

from sparkfly_client.models.merchant_response import MerchantResponse

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

# convert the object into a dict
merchant_response_dict = merchant_response_instance.to_dict()
# create an instance of MerchantResponse from a dict
merchant_response_form_dict = merchant_response.from_dict(merchant_response_dict)

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