Current section

Files

Jump to
futu lib futu protobuf Qot_GetStaticInfo.pb.ex
Raw

lib/futu/protobuf/Qot_GetStaticInfo.pb.ex

defmodule Qot_GetStaticInfo.C2S do
@moduledoc false
use Protobuf, syntax: :proto2
@type t :: %__MODULE__{
market: integer,
secType: integer,
securityList: [Qot_Common.Security.t()]
}
defstruct [:market, :secType, :securityList]
field :market, 1, optional: true, type: :int32
field :secType, 2, optional: true, type: :int32
field :securityList, 3, repeated: true, type: Qot_Common.Security
end
defmodule Qot_GetStaticInfo.S2C do
@moduledoc false
use Protobuf, syntax: :proto2
@type t :: %__MODULE__{
staticInfoList: [Qot_Common.SecurityStaticInfo.t()]
}
defstruct [:staticInfoList]
field :staticInfoList, 1, repeated: true, type: Qot_Common.SecurityStaticInfo
end
defmodule Qot_GetStaticInfo.Request do
@moduledoc false
use Protobuf, syntax: :proto2
@type t :: %__MODULE__{
c2s: Qot_GetStaticInfo.C2S.t() | nil
}
defstruct [:c2s]
field :c2s, 1, required: true, type: Qot_GetStaticInfo.C2S
end
defmodule Qot_GetStaticInfo.Response do
@moduledoc false
use Protobuf, syntax: :proto2
@type t :: %__MODULE__{
retType: integer,
retMsg: String.t(),
errCode: integer,
s2c: Qot_GetStaticInfo.S2C.t() | nil
}
defstruct [:retType, :retMsg, :errCode, :s2c]
field :retType, 1, required: true, type: :int32, default: -400
field :retMsg, 2, optional: true, type: :string
field :errCode, 3, optional: true, type: :int32
field :s2c, 4, optional: true, type: Qot_GetStaticInfo.S2C
end