Method
import type { Method } from "https://googleapis.deno.dev/v1/serviceconsumermanagement:v1.ts";
Method represents a method of an API interface. New usages of this message as an alternative to MethodDescriptorProto are strongly discouraged. This message does not reliability preserve all information necessary to model the schema and preserve semantics. Instead make use of FileDescriptorSet which preserves the necessary information.
interface Method {
edition?: string;
name?: string;
options?: Option[];
requestStreaming?: boolean;
requestTypeUrl?: string;
responseStreaming?: boolean;
responseTypeUrl?: string;
syntax?: "SYNTAX_PROTO2" | "SYNTAX_PROTO3" | "SYNTAX_EDITIONS";
}