Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 986 Bytes

MerchantReportData.md

File metadata and controls

28 lines (20 loc) · 986 Bytes

MerchantReportData

Properties

Name Type Description Notes
data List[MerchantReport] [optional]

Example

from sparkfly_client.models.merchant_report_data import MerchantReportData

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

# convert the object into a dict
merchant_report_data_dict = merchant_report_data_instance.to_dict()
# create an instance of MerchantReportData from a dict
merchant_report_data_form_dict = merchant_report_data.from_dict(merchant_report_data_dict)

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