/* 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 "Contract.proto";
option java_outer_classname = "ExerciseOptionsRequestProto";
option java_package = "com.ib.client.protobuf";
option csharp_namespace = "IBApi.protobuf";
message ExerciseOptionsRequest {
optional int32 orderId = 1;
optional Contract contract = 2;
optional int32 exerciseAction = 3;
optional int32 exerciseQuantity = 4;
optional string account = 5;
optional bool override = 6;
optional string manualOrderTime = 7;
optional string customerAccount = 8;
optional bool professionalCustomer = 9;
}