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

__construct()

No description

string
getName()

Define the name of the parameter, such as "api_key" . It is case sensitive.

setName(string $var)

Define the name of the parameter, such as "api_key" . It is case sensitive.

string
getHttpHeader()

Define the HTTP header name to use for the parameter. It is case insensitive.

setHttpHeader(string $var)

Define the HTTP header name to use for the parameter. It is case insensitive.

string
getUrlQueryParameter()

Define the URL query parameter name to use for the parameter. It is case sensitive.

setUrlQueryParameter(string $var)

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;

Return Value

string

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;

Parameters

string $var

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;

Return Value

string

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;

Parameters

string $var

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;

Return Value

string

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;

Parameters

string $var