Show / Hide Table of Contents

Class CustomVariable

Custom variable.

Inheritance
System.Object
CustomVariable
Implements
Google.Apis.Requests.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.Dfareporting.v3_4.Data
Assembly: Google.Apis.Dfareporting.v3_4.dll
Syntax
public class CustomVariable : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Index

The index of the custom variable.

Declaration
[JsonProperty("index")]
public virtual long? Index { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Kind

Identifies what kind of resource this is. Value: the fixed string "dfareporting#customVariable".

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

Value

The value of the custom variable. The length of string must not exceed 50 characters.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top