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
A brief description of the changes you're requesting
instructions
List[Dict[str, object]]
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]
execution_date
int
[optional]
operating_on_id
str
The ID of a scheduled change. Include this if your <code>instructions</code> include editing or deleting a scheduled change.
[optional]
integration_config
Dict[str, object]
[optional]
Example
fromlaunchdarkly_api.models.create_flag_config_approval_request_requestimportCreateFlagConfigApprovalRequestRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateFlagConfigApprovalRequestRequest from a JSON stringcreate_flag_config_approval_request_request_instance=CreateFlagConfigApprovalRequestRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateFlagConfigApprovalRequestRequest.to_json())
# convert the object into a dictcreate_flag_config_approval_request_request_dict=create_flag_config_approval_request_request_instance.to_dict()
# create an instance of CreateFlagConfigApprovalRequestRequest from a dictcreate_flag_config_approval_request_request_from_dict=CreateFlagConfigApprovalRequestRequest.from_dict(create_flag_config_approval_request_request_dict)