Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.44 KB

File metadata and controls

33 lines (24 loc) · 1.44 KB

AudienceConfiguration

Properties

Name Type Description Notes
release_strategy str
require_approval bool Whether or not the audience requires approval
notify_member_ids List[str] An array of member IDs. These members are notified to review the approval request. [optional]
notify_team_keys List[str] An array of team keys. The members of these teams are notified to review the approval request. [optional]
release_guardian_configuration ReleaseGuardianConfiguration [optional]

Example

from launchdarkly_api.models.audience_configuration import AudienceConfiguration

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

# convert the object into a dict
audience_configuration_dict = audience_configuration_instance.to_dict()
# create an instance of AudienceConfiguration from a dict
audience_configuration_from_dict = AudienceConfiguration.from_dict(audience_configuration_dict)

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