| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The audience ID | |
| links | Dict[str, Link] | The location and content type of related resources | [optional] |
| environment | EnvironmentSummary | [optional] | |
| name | str | The release phase name | |
| configuration | AudienceConfiguration | [optional] | |
| segment_keys | List[str] | A list of segment keys | [optional] |
| status | str | [optional] | |
| rule_ids | List[str] | The rules IDs added or updated by this audience | [optional] |
from launchdarkly_api.models.release_audience import ReleaseAudience
# TODO update the JSON string below
json = "{}"
# create an instance of ReleaseAudience from a JSON string
release_audience_instance = ReleaseAudience.from_json(json)
# print the JSON string representation of the object
print(ReleaseAudience.to_json())
# convert the object into a dict
release_audience_dict = release_audience_instance.to_dict()
# create an instance of ReleaseAudience from a dict
release_audience_from_dict = ReleaseAudience.from_dict(release_audience_dict)