Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 918 Bytes

File metadata and controls

32 lines (23 loc) · 918 Bytes

Phase

Properties

Name Type Description Notes
id str The phase ID
audiences List[Audience]
name str The release phase name
configuration object [optional]

Example

from launchdarkly_api.models.phase import Phase

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

# convert the object into a dict
phase_dict = phase_instance.to_dict()
# create an instance of Phase from a dict
phase_from_dict = Phase.from_dict(phase_dict)

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