/* Copyright (C) 2025 Interactive Brokers LLC. All rights reserved. This code is subject to the terms
* and conditions of the IB API Non-Commercial License or the IB API Commercial License, as applicable. */
syntax = "proto3";
package protobuf;
import "LockAndExitConfig.proto";
import "MessageConfig.proto";
import "ApiConfig.proto";
import "OrdersConfig.proto";
import "UpdateConfigWarning.proto";
option java_outer_classname = "UpdateConfigRequestProto";
option java_package = "com.ib.client.protobuf";
option csharp_namespace = "IBApi.protobuf";
message UpdateConfigRequest {
optional int32 reqId = 1;
optional LockAndExitConfig lockAndExit = 2;
repeated MessageConfig messages = 3;
optional ApiConfig api = 4;
optional OrdersConfig orders = 5;
repeated UpdateConfigWarning acceptedWarnings = 6;
optional bool resetAPIOrderSequence = 7;
}