Variable RFQConst

RFQ: {
    methods: {
        maker: {
            I: typeof QuoteResponse;
            O: typeof QuoteRequest;
            kind: BiDiStreaming;
            name: "Maker";
        };
        taker: {
            I: typeof QuoteRequest;
            O: typeof QuoteResponse;
            kind: BiDiStreaming;
            name: "Taker";
        };
        webTaker: {
            I: typeof QuoteRequest;
            O: typeof QuoteResponse;
            kind: ServerStreaming;
            name: "WebTaker";
        };
    };
    typeName: "valorem.trade.v1.RFQ";
} = ...

Type declaration

  • Readonly methods: {
        maker: {
            I: typeof QuoteResponse;
            O: typeof QuoteRequest;
            kind: BiDiStreaming;
            name: "Maker";
        };
        taker: {
            I: typeof QuoteRequest;
            O: typeof QuoteResponse;
            kind: BiDiStreaming;
            name: "Taker";
        };
        webTaker: {
            I: typeof QuoteRequest;
            O: typeof QuoteResponse;
            kind: ServerStreaming;
            name: "WebTaker";
        };
    }
    • Readonly maker: {
          I: typeof QuoteResponse;
          O: typeof QuoteRequest;
          kind: BiDiStreaming;
          name: "Maker";
      }

      Send quotes to takers via a stream of QuoteResponse messages and receive a stream of QuoteRequest messages.

      Generated

      from rpc valorem.trade.v1.RFQ.Maker

    • Readonly taker: {
          I: typeof QuoteRequest;
          O: typeof QuoteResponse;
          kind: BiDiStreaming;
          name: "Taker";
      }

      Request quotes from makers via a stream of QuoteRequest messages and receive a stream of QuoteResponse messages.

      Generated

      from rpc valorem.trade.v1.RFQ.Taker

    • Readonly webTaker: {
          I: typeof QuoteRequest;
          O: typeof QuoteResponse;
          kind: ServerStreaming;
          name: "WebTaker";
      }

      Request quotes from makers via a single QuoteRequest message and receive a stream of QuoteResponse messages for use by gRPC-web clients.

      Generated

      from rpc valorem.trade.v1.RFQ.WebTaker

  • Readonly typeName: "valorem.trade.v1.RFQ"

Generated

from service valorem.trade.v1.RFQ

Generated using TypeDoc