syntax = "proto2";
package Qot_UpdateOptionEvent;
option java_package = "com.futu.openapi.pb";

import "Qot_Common.proto";

message S2C
{
    optional Qot_Common.Security owner = 1;         //标的
    optional Qot_Common.Security option = 2;        //期权合约
    optional string message = 3;                    //推送消息文本
}

message Response
{
    required int32 retType = 1 [default = -400]; //RetType，返回结果
    optional string retMsg = 2;
    optional int32 errCode = 3;
    optional S2C s2c = 4;
}
