com.google.rpc.LocalizedMessageOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dubbo Show documentation
Show all versions of dubbo Show documentation
The all in one project of dubbo
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: error_details.proto
// Protobuf Java Version: 3.25.5
package com.google.rpc;
public interface LocalizedMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.rpc.LocalizedMessage)
com.google.protobuf.MessageOrBuilder {
/**
*
* The locale used following the specification defined at
* http://www.rfc-editor.org/rfc/bcp/bcp47.txt.
* Examples are: "en-US", "fr-CH", "es-MX"
*
*
* string locale = 1;
* @return The locale.
*/
java.lang.String getLocale();
/**
*
* The locale used following the specification defined at
* http://www.rfc-editor.org/rfc/bcp/bcp47.txt.
* Examples are: "en-US", "fr-CH", "es-MX"
*
*
* string locale = 1;
* @return The bytes for locale.
*/
com.google.protobuf.ByteString
getLocaleBytes();
/**
*
* The localized error message in the above locale.
*
*
* string message = 2;
* @return The message.
*/
java.lang.String getMessage();
/**
*
* The localized error message in the above locale.
*
*
* string message = 2;
* @return The bytes for message.
*/
com.google.protobuf.ByteString
getMessageBytes();
}