| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The phase ID | |
| audiences | List[Audience] | ||
| name | str | The release phase name | |
| configuration | object | [optional] |
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)