mexc_spot_increase_depth_v3.proto 515 B

123456789101112131415161718192021
  1. // spot@public.increase.depth.v3.api.pb
  2. syntax = "proto3";
  3. option java_package = "com.mxc.push.common.protobuf";
  4. option optimize_for = SPEED;
  5. option java_multiple_files = true;
  6. option java_outer_classname = "PublicIncreaseDepthsV3ApiProto";
  7. message PublicIncreaseDepthsV3Api {
  8. repeated PublicIncreaseDepthV3ApiItem asks = 1;
  9. repeated PublicIncreaseDepthV3ApiItem bids = 2;
  10. string eventType = 3;
  11. string version = 4;
  12. }
  13. message PublicIncreaseDepthV3ApiItem {
  14. string price = 1;
  15. string quantity = 2;
  16. }