Show / Hide Table of Contents

Class RepricingRuleReport

Resource that represents a daily Repricing rule report. Next ID: 11

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

Properties

BuyboxWinningRuleStats

Stats specific to buybox winning rules for rule report.

Declaration
[JsonProperty("buyboxWinningRuleStats")]
public virtual RepricingRuleReportBuyboxWinningRuleStats BuyboxWinningRuleStats { get; set; }
Property Value
Type Description
RepricingRuleReportBuyboxWinningRuleStats

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

ImpactedProducts

List of product ids that are impacted by this rule during this reporting period. Out of stock products and products not searched for by customers are examples of non-impacted products.

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

InapplicabilityDetails

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

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

InapplicableProducts

List of product ids that are inapplicable to this rule during this reporting period. To get the inapplicable reason for a specific product, see RepricingProductReport.

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

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>

RuleId

Id of the Repricing rule for this report.

Declaration
[JsonProperty("ruleId")]
public virtual string RuleId { get; set; }
Property Value
Type Description
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