You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]
Example
fromlaunchdarkly_api.models.releaser_audience_config_inputimportReleaserAudienceConfigInput# TODO update the JSON string belowjson="{}"# create an instance of ReleaserAudienceConfigInput from a JSON stringreleaser_audience_config_input_instance=ReleaserAudienceConfigInput.from_json(json)
# print the JSON string representation of the objectprint(ReleaserAudienceConfigInput.to_json())
# convert the object into a dictreleaser_audience_config_input_dict=releaser_audience_config_input_instance.to_dict()
# create an instance of ReleaserAudienceConfigInput from a dictreleaser_audience_config_input_from_dict=ReleaserAudienceConfigInput.from_dict(releaser_audience_config_input_dict)