Package com.google.api
Interface SystemParameterOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SystemParameter,SystemParameter.Builder
@Generated
public interface SystemParameterOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionDefine the HTTP header name to use for the parameter.com.google.protobuf.ByteStringDefine the HTTP header name to use for the parameter.getName()Define the name of the parameter, such as "api_key" .com.google.protobuf.ByteStringDefine the name of the parameter, such as "api_key" .Define the URL query parameter name to use for the parameter.com.google.protobuf.ByteStringDefine the URL query parameter name to use for the parameter.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getName
String getName()Define the name of the parameter, such as "api_key" . It is case sensitive.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()Define the name of the parameter, such as "api_key" . It is case sensitive.
string name = 1;- Returns:
- The bytes for name.
-
getHttpHeader
String getHttpHeader()Define the HTTP header name to use for the parameter. It is case insensitive.
string http_header = 2;- Returns:
- The httpHeader.
-
getHttpHeaderBytes
com.google.protobuf.ByteString getHttpHeaderBytes()Define the HTTP header name to use for the parameter. It is case insensitive.
string http_header = 2;- Returns:
- The bytes for httpHeader.
-
getUrlQueryParameter
String getUrlQueryParameter()Define the URL query parameter name to use for the parameter. It is case sensitive.
string url_query_parameter = 3;- Returns:
- The urlQueryParameter.
-
getUrlQueryParameterBytes
com.google.protobuf.ByteString getUrlQueryParameterBytes()Define the URL query parameter name to use for the parameter. It is case sensitive.
string url_query_parameter = 3;- Returns:
- The bytes for urlQueryParameter.
-