Show / Hide Table of Contents

Class RepricingProductReport

Resource that represents a daily Repricing product report. Each report contains stats for a single type of Repricing rule for a single product on a given day. If there are multiple rules of the same type for the product on that day, the report lists all the rules by rule ids, combines the stats, and paginates the results by date. To retrieve the stats of a particular rule, provide the rule_id in the request.

Inheritance
System.Object
RepricingProductReport
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 RepricingProductReport : IDirectResponseSchema

Properties

ApplicationCount

Total count of Repricer applications. This value captures how many times the rule of this type was applied to this product during this reporting period.

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

BuyboxWinningProductStats

Stats specific to buybox winning rules for product report.

Declaration
[JsonProperty("buyboxWinningProductStats")]
public virtual RepricingProductReportBuyboxWinningProductStats BuyboxWinningProductStats { get; set; }
Property Value
Type Description
RepricingProductReportBuyboxWinningProductStats

Date

Date of the stats in this report. The report starts and ends according to the merchant's timezone.

Declaration
[JsonProperty("date")]
public virtual Date Date { get; set; }
Property Value
Type Description
Date

ETag

The ETag of the item.

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

HighWatermark

Maximum displayed price after repriced during this reporting period.

Declaration
[JsonProperty("highWatermark")]
public virtual PriceAmount HighWatermark { get; set; }
Property Value
Type Description
PriceAmount

InapplicabilityDetails

List of all reasons the rule did not apply to the product during the specified reporting period.

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

LowWatermark

Minimum displayed price after repriced during this reporting period.

Declaration
[JsonProperty("lowWatermark")]
public virtual PriceAmount LowWatermark { get; set; }
Property Value
Type Description
PriceAmount

OrderItemCount

Total unit count of impacted products ordered while the rule was active on the date of the report. This count includes all orders that were started while the rule was active, even if the rule was no longer active when the order was completed.

Declaration
[JsonProperty("orderItemCount")]
public virtual int? OrderItemCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

RuleIds

Ids of the Repricing rule for this report.

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

TotalGmv

Total GMV generated by impacted products while the rule was active on the date of the report. This value includes all orders that were started while the rule was active, even if the rule was no longer active when the order was completed.

Declaration
[JsonProperty("totalGmv")]
public virtual PriceAmount TotalGmv { get; set; }
Property Value
Type Description
PriceAmount

Type

Type of the rule.

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

Implements

IDirectResponseSchema
In This Article
Back to top