SystemParameter
class SystemParameter extends Message
Define a parameter's name and location. The parameter may be passed as either an HTTP header or a URL query parameter, and if both are passed the behavior is implementation-dependent.
Protobuf type Google\Api\SystemParameter
Methods
No description
Define the name of the parameter, such as "api_key" . It is case sensitive.
Define the name of the parameter, such as "api_key" . It is case sensitive.
Define the HTTP header name to use for the parameter. It is case insensitive.
Define the HTTP header name to use for the parameter. It is case insensitive.
Define the URL query parameter name to use for the parameter. It is case sensitive.
Define the URL query parameter name to use for the parameter. It is case sensitive.
Details
at line 41
__construct()
at line 52
string
getName()
Define the name of the parameter, such as "api_key" . It is case sensitive.
Generated from protobuf field string name = 1;
at line 63
setName(string $var)
Define the name of the parameter, such as "api_key" . It is case sensitive.
Generated from protobuf field string name = 1;
at line 76
string
getHttpHeader()
Define the HTTP header name to use for the parameter. It is case insensitive.
Generated from protobuf field string http_header = 2;
at line 88
setHttpHeader(string $var)
Define the HTTP header name to use for the parameter. It is case insensitive.
Generated from protobuf field string http_header = 2;
at line 101
string
getUrlQueryParameter()
Define the URL query parameter name to use for the parameter. It is case sensitive.
Generated from protobuf field string url_query_parameter = 3;
at line 113
setUrlQueryParameter(string $var)
Define the URL query parameter name to use for the parameter. It is case sensitive.
Generated from protobuf field string url_query_parameter = 3;