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
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
fromlaunchdarkly_api.models.create_copy_flag_config_approval_request_requestimportCreateCopyFlagConfigApprovalRequestRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateCopyFlagConfigApprovalRequestRequest from a JSON stringcreate_copy_flag_config_approval_request_request_instance=CreateCopyFlagConfigApprovalRequestRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateCopyFlagConfigApprovalRequestRequest.to_json())
# convert the object into a dictcreate_copy_flag_config_approval_request_request_dict=create_copy_flag_config_approval_request_request_instance.to_dict()
# create an instance of CreateCopyFlagConfigApprovalRequestRequest from a dictcreate_copy_flag_config_approval_request_request_from_dict=CreateCopyFlagConfigApprovalRequestRequest.from_dict(create_copy_flag_config_approval_request_request_dict)