Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BatchingDescriptorProto

import type { BatchingDescriptorProto } from "https://googleapis.deno.dev/v1/serviceconsumermanagement:v1.ts";

BatchingDescriptorProto specifies the fields of the request message to be used for batching, and, optionally, the fields of the response message to be used for demultiplexing.

interface BatchingDescriptorProto {
batchedField?: string;
discriminatorFields?: string[];
subresponseField?: string;
}

§Properties

§
batchedField?: string
[src]

The repeated field in the request message to be aggregated by batching.

§
discriminatorFields?: string[]
[src]

A list of the fields in the request message. Two requests will be batched together only if the values of every field specified in request_discriminator_fields is equal between the two requests.

§
subresponseField?: string
[src]

Optional. When present, indicates the field in the response message to be used to demultiplex the response into multiple response messages, in correspondence with the multiple request messages originally batched together.