Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

File metadata and controls

32 lines (23 loc) · 1.04 KB

Audience

Properties

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]

Example

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)

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