Name | Type | Description | Notes |
---|---|---|---|
merchant | Merchant | [optional] | |
errors | Dict[str, str] | [optional] |
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)