Show / Hide Table of Contents

Class ListRepricingRuleReportsResponse

Response message for the ListRepricingRuleReports method.

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

Properties

ETag

The ETag of the item.

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

NextPageToken

A token for retrieving the next page. Its absence means there is no subsequent page.

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

RepricingRuleReports

Daily reports for the given Repricing rule.

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

Implements

IDirectResponseSchema
In This Article
Back to top