tigeropen 0.3.0

老虎证券 OpenAPI Rust SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
syntax = "proto3";
import public "SocketCommon.proto";
import public "PushData.proto";

package com.tigerbrokers.stock.openapi.client.socket.data.pb;

option java_package = "com.tigerbrokers.stock.openapi.client.socket.data.pb";
option java_multiple_files = true;

message Response {

  SocketCommon.Command command = 1;
  optional uint32 id = 2; // from request's id
  optional int32 code = 3;
  optional string msg = 4;
  optional PushData body = 5;

}