| 12345678910111213141516171819202122232425262728293031323334 | syntax = "proto3";package type.googleapis.com.DepthPbMsg; // 替换为你的包名// 响应消息message Response {  string biz = 1; // 业务类型  string type = 2; // 消息类型  string base = 3; // 基础货币  string quote = 4; // 报价货币  string contractcode = 5; // 合约代码  string granularity = 6; // 粒度  Data data = 7; // 数据  int32 env = 8; // 环境标识}// 数据消息message Data {  string typeUrl = 1; // 数据类型URL  DepthPbMsg value = 2; // 数据值}message DepthPbMsg {  message Body {    // Body的具体字段未在提供的JavaScript代码中指定,需要根据实际序列化逻辑定义。  }  // 卖方深度列表  repeated Body asksList = 1;  // 买方深度列表  repeated Body bidsList = 2;}
 |