/* 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;
option java_outer_classname = "WshEventDataRequestProto";
option java_package = "com.ib.client.protobuf";
option csharp_namespace = "IBApi.protobuf";
message WshEventDataRequest {
optional int32 reqId = 1;
optional int32 conId = 2;
optional string filter = 3;
optional bool fillWatchlist = 4;
optional bool fillPortfolio = 5;
optional bool fillCompetitors = 6;
optional string startDate = 7;
optional string endDate = 8;
optional int32 totalLimit = 9;
}