truefix-twsapi-client 0.1.4

Thin Interactive Brokers TWS/Gateway protocol client for TrueFix.
Documentation
/* 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";

option java_outer_classname = "ConfigResponseProto";
option java_package = "com.ib.client.protobuf";
option csharp_namespace = "IBApi.protobuf";

message ConfigResponse {
    optional int32 reqId = 1;
    optional LockAndExitConfig lockAndExit = 2;
    repeated MessageConfig messages = 3;
    optional ApiConfig api = 4;
    optional OrdersConfig orders = 5;
}