Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

CustomWorkflowStageMeta

Properties

Name Type Description Notes
index int The zero-based index of the workflow stage [optional]
name str The name of the workflow stage [optional]

Example

from launchdarkly_api.models.custom_workflow_stage_meta import CustomWorkflowStageMeta

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

# convert the object into a dict
custom_workflow_stage_meta_dict = custom_workflow_stage_meta_instance.to_dict()
# create an instance of CustomWorkflowStageMeta from a dict
custom_workflow_stage_meta_from_dict = CustomWorkflowStageMeta.from_dict(custom_workflow_stage_meta_dict)

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