Show / Hide Table of Contents

Class ListRepricingProductReportsResponse

Response message for the ListRepricingProductReports method.

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

RepricingProductReports

Periodic reports for the given Repricing product.

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

Implements

IDirectResponseSchema
In This Article
Back to top