Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.11 KB

File metadata and controls

33 lines (24 loc) · 1.11 KB

StageOutput

Properties

Name Type Description Notes
id str The ID of this stage
name str The stage name [optional]
conditions List[ConditionOutput] An array of conditions for the stage
action ActionOutput
execution ExecutionOutput

Example

from launchdarkly_api.models.stage_output import StageOutput

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

# convert the object into a dict
stage_output_dict = stage_output_instance.to_dict()
# create an instance of StageOutput from a dict
stage_output_from_dict = StageOutput.from_dict(stage_output_dict)

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