Show / Hide Table of Contents

Class SystemParameter

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.

Inheritance
System.Object
SystemParameter
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ServiceUsage.v1.Data
Assembly: Google.Apis.ServiceUsage.v1.dll
Syntax
public class SystemParameter : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

HttpHeader

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

Declaration
[JsonProperty("httpHeader")]
public virtual string HttpHeader { get; set; }
Property Value
Type Description
System.String

Name

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

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

UrlQueryParameter

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

Declaration
[JsonProperty("urlQueryParameter")]
public virtual string UrlQueryParameter { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top