Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 2.36 KB

File metadata and controls

35 lines (26 loc) · 2.36 KB

CreateCopyFlagConfigApprovalRequestRequest

Properties

Name Type Description Notes
comment str Optional comment describing the approval request [optional]
description str A brief description of your changes
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]
source SourceFlag
included_actions List[str] Optional list of the flag changes to copy from the source environment to the target environment. You may include either <code>includedActions</code> or <code>excludedActions</code>, but not both. If neither are included, then all flag changes will be copied. [optional]
excluded_actions List[str] Optional list of the flag changes NOT to copy from the source environment to the target environment. You may include either <code>includedActions</code> or <code>excludedActions</code>, but not both. If neither are included, then all flag changes will be copied. [optional]

Example

from launchdarkly_api.models.create_copy_flag_config_approval_request_request import CreateCopyFlagConfigApprovalRequestRequest

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

# convert the object into a dict
create_copy_flag_config_approval_request_request_dict = create_copy_flag_config_approval_request_request_instance.to_dict()
# create an instance of CreateCopyFlagConfigApprovalRequestRequest from a dict
create_copy_flag_config_approval_request_request_from_dict = CreateCopyFlagConfigApprovalRequestRequest.from_dict(create_copy_flag_config_approval_request_request_dict)

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