grpc-node/packages/proto-loader/golden-generated/google/showcase/v1beta1/EchoResponse.ts

32 lines
798 B
TypeScript

// Original file: deps/gapic-showcase/schema/google/showcase/v1beta1/echo.proto
import type { ISeverity as I_google_showcase_v1beta1_Severity, OSeverity as O_google_showcase_v1beta1_Severity } from '../../../google/showcase/v1beta1/Severity';
/**
* The response message for the Echo methods.
*/
export interface IEchoResponse {
/**
* The content specified in the request.
*/
'content'?: (string);
/**
* The severity specified in the request.
*/
'severity'?: (I_google_showcase_v1beta1_Severity);
}
/**
* The response message for the Echo methods.
*/
export interface OEchoResponse {
/**
* The content specified in the request.
*/
'content': (string);
/**
* The severity specified in the request.
*/
'severity': (O_google_showcase_v1beta1_Severity);
}