Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.25 KB

File metadata and controls

31 lines (22 loc) · 1.25 KB

Workflowv3ReportResult

ReportResult - contains columns and rows in JSON format.

Properties

Name Type Description Notes
headers List[Workflowv3ReportResultHeader] Header for exported report csv. [optional]
rows List[Workflowv3ReportResultRow] Data for exported report csv. [optional]

Example

from ibm_gdsc_sdk_saas.models.workflowv3_report_result import Workflowv3ReportResult

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

# convert the object into a dict
workflowv3_report_result_dict = workflowv3_report_result_instance.to_dict()
# create an instance of Workflowv3ReportResult from a dict
workflowv3_report_result_from_dict = Workflowv3ReportResult.from_dict(workflowv3_report_result_dict)

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