2023-01-27 13:39:10 -08:00

21 lines
401 B
TypeScript

// Original file: proto/grpc/testing/echo_messages.proto
/**
* Error status client expects to see.
*/
export interface ErrorStatus {
'code'?: (number);
'error_message'?: (string);
'binary_error_details'?: (string);
}
/**
* Error status client expects to see.
*/
export interface ErrorStatus__Output {
'code': (number);
'error_message': (string);
'binary_error_details': (string);
}