Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

CustomWorkflowMeta

Properties

Name Type Description Notes
name str The name of the workflow stage that required this approval request [optional]
stage CustomWorkflowStageMeta [optional]

Example

from launchdarkly_api.models.custom_workflow_meta import CustomWorkflowMeta

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

# convert the object into a dict
custom_workflow_meta_dict = custom_workflow_meta_instance.to_dict()
# create an instance of CustomWorkflowMeta from a dict
custom_workflow_meta_from_dict = CustomWorkflowMeta.from_dict(custom_workflow_meta_dict)

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