| Name | Type | Description | Notes |
|---|---|---|---|
| environment | EnvironmentSummary | [optional] | |
| name | str | The release phase name | |
| configuration | AudienceConfiguration | [optional] | |
| segment_keys | List[str] | A list of segment keys | [optional] |
from launchdarkly_api.models.audience import Audience
# TODO update the JSON string below
json = "{}"
# create an instance of Audience from a JSON string
audience_instance = Audience.from_json(json)
# print the JSON string representation of the object
print(Audience.to_json())
# convert the object into a dict
audience_dict = audience_instance.to_dict()
# create an instance of Audience from a dict
audience_from_dict = Audience.from_dict(audience_dict)