Show / Hide Table of Contents

Class ReportingMetadataEntry

Inheritance
System.Object
ReportingMetadataEntry
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.AdSense.v1_4.Data
Assembly: Google.Apis.AdSense.v1_4.dll
Syntax
public class ReportingMetadataEntry : IDirectResponseSchema

Properties

CompatibleDimensions

For metrics this is a list of dimension IDs which the metric is compatible with, for dimensions it is a list of compatibility groups the dimension belongs to.

Declaration
[JsonProperty("compatibleDimensions")]
public virtual IList<string> CompatibleDimensions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

CompatibleMetrics

The names of the metrics the dimension or metric this reporting metadata entry describes is compatible with.

Declaration
[JsonProperty("compatibleMetrics")]
public virtual IList<string> CompatibleMetrics { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ETag

The ETag of the item.

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

Id

Unique identifier of this reporting metadata entry, corresponding to the name of the appropriate dimension or metric.

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

Kind

Kind of resource this is, in this case adsense#reportingMetadataEntry.

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

RequiredDimensions

The names of the dimensions which the dimension or metric this reporting metadata entry describes requires to also be present in order for the report to be valid. Omitting these will not cause an error or warning, but may result in data which cannot be correctly interpreted.

Declaration
[JsonProperty("requiredDimensions")]
public virtual IList<string> RequiredDimensions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

RequiredMetrics

The names of the metrics which the dimension or metric this reporting metadata entry describes requires to also be present in order for the report to be valid. Omitting these will not cause an error or warning, but may result in data which cannot be correctly interpreted.

Declaration
[JsonProperty("requiredMetrics")]
public virtual IList<string> RequiredMetrics { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

SupportedProducts

The codes of the projects supported by the dimension or metric this reporting metadata entry describes.

Declaration
[JsonProperty("supportedProducts")]
public virtual IList<string> SupportedProducts { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

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