Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.46 KB

File metadata and controls

33 lines (24 loc) · 1.46 KB

Workflowv3ProductWorkflow

Properties

Name Type Description Notes
audit_type Schedulerv3AuditType [optional] [default to Schedulerv3AuditType.UNDEFINED_TYPE]
config_types List[str] [optional]
workflow_investigation_links List[Schedulerv3ConfigurationItem] [optional]
workflow_response_template Schedulerv3ConfigurationItem [optional]
workflow_unique_fields List[str] [optional]

Example

from ibm_gdsc_sdk_saas.models.workflowv3_product_workflow import Workflowv3ProductWorkflow

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

# convert the object into a dict
workflowv3_product_workflow_dict = workflowv3_product_workflow_instance.to_dict()
# create an instance of Workflowv3ProductWorkflow from a dict
workflowv3_product_workflow_from_dict = Workflowv3ProductWorkflow.from_dict(workflowv3_product_workflow_dict)

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