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]
integration_config
Dict[str, object]
[optional]
Example
fromlaunchdarkly_api.models.create_approval_request_requestimportCreateApprovalRequestRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateApprovalRequestRequest from a JSON stringcreate_approval_request_request_instance=CreateApprovalRequestRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateApprovalRequestRequest.to_json())
# convert the object into a dictcreate_approval_request_request_dict=create_approval_request_request_instance.to_dict()
# create an instance of CreateApprovalRequestRequest from a dictcreate_approval_request_request_from_dict=CreateApprovalRequestRequest.from_dict(create_approval_request_request_dict)