Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.81 KB

File metadata and controls

33 lines (24 loc) · 1.81 KB

WorkflowStepConditionSource

Defines the document-derived source value to evaluate for a workflow condition criterion. The source identifies where the value comes from before applying the operator. Supported sources include: - a document attribute identified by attributeKey - a comparison between a document attribute value and another attribute-derived value - the document content type - the document path

Properties

Name Type Description Notes
attribute_key str Document attribute key
source_type WorkflowStepConditionAttributeValueComparisonSourceType
value_attribute_key str Document attribute key containing the value to compare.
comparison WorkflowStepConditionAttributeValueComparisonTarget

Example

from formkiq_client.models.workflow_step_condition_source import WorkflowStepConditionSource

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

# convert the object into a dict
workflow_step_condition_source_dict = workflow_step_condition_source_instance.to_dict()
# create an instance of WorkflowStepConditionSource from a dict
workflow_step_condition_source_from_dict = WorkflowStepConditionSource.from_dict(workflow_step_condition_source_dict)

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