Show / Hide Table of Contents

Class Metrics

Performance metrics. Values are only set for metrics requested explicitly in the request's search query.

Inheritance
System.Object
Metrics
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.ShoppingContent.v2_1.Data
Assembly: Google.Apis.ShoppingContent.v2_1.dll
Syntax
public class Metrics : IDirectResponseSchema

Properties

Clicks

Number of clicks.

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

Ctr

Click-through rate - the number of clicks merchant's products receive (clicks) divided by the number of times the products are shown (impressions).

Declaration
[JsonProperty("ctr")]
public virtual double? Ctr { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

ETag

The ETag of the item.

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

Impressions

Number of times merchant's products are shown.

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

Implements

IDirectResponseSchema
In This Article
Back to top