Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

File metadata and controls

32 lines (23 loc) · 1.07 KB

AppWorkflowField

The information of a workflow field.

Properties

Name Type Description Notes
var_field str The workflow field name.
value_type PolicyFieldValueType
value str The workflow field value.

Example

from cobo_waas2.models.app_workflow_field import AppWorkflowField

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

# convert the object into a dict
app_workflow_field_dict = app_workflow_field_instance.to_dict()
# create an instance of AppWorkflowField from a dict
app_workflow_field_from_dict = AppWorkflowField.from_dict(app_workflow_field_dict)

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