Show / Hide Table of Contents

Class RepricingrulesResource.RepricingreportsResource.ListRequest

Lists the metrics report for a given Repricing rule.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ListRepricingRuleReportsResponse>
ShoppingContentBaseServiceRequest<ListRepricingRuleReportsResponse>
RepricingrulesResource.RepricingreportsResource.ListRequest
Implements
IClientServiceRequest<ListRepricingRuleReportsResponse>
IClientServiceRequest
Inherited Members
ShoppingContentBaseServiceRequest<ListRepricingRuleReportsResponse>.Xgafv
ShoppingContentBaseServiceRequest<ListRepricingRuleReportsResponse>.AccessToken
ShoppingContentBaseServiceRequest<ListRepricingRuleReportsResponse>.Alt
ShoppingContentBaseServiceRequest<ListRepricingRuleReportsResponse>.Callback
ShoppingContentBaseServiceRequest<ListRepricingRuleReportsResponse>.Fields
ShoppingContentBaseServiceRequest<ListRepricingRuleReportsResponse>.Key
ShoppingContentBaseServiceRequest<ListRepricingRuleReportsResponse>.OauthToken
ShoppingContentBaseServiceRequest<ListRepricingRuleReportsResponse>.PrettyPrint
ShoppingContentBaseServiceRequest<ListRepricingRuleReportsResponse>.QuotaUser
ShoppingContentBaseServiceRequest<ListRepricingRuleReportsResponse>.UploadType
ShoppingContentBaseServiceRequest<ListRepricingRuleReportsResponse>.UploadProtocol
ClientServiceRequest<ListRepricingRuleReportsResponse>.Execute()
ClientServiceRequest<ListRepricingRuleReportsResponse>.ExecuteAsStream()
ClientServiceRequest<ListRepricingRuleReportsResponse>.ExecuteAsync()
ClientServiceRequest<ListRepricingRuleReportsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListRepricingRuleReportsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListRepricingRuleReportsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListRepricingRuleReportsResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ListRepricingRuleReportsResponse>.GenerateRequestUri()
ClientServiceRequest<ListRepricingRuleReportsResponse>.GetBody()
ClientServiceRequest<ListRepricingRuleReportsResponse>.GetDefaultETagAction(String)
ClientServiceRequest<ListRepricingRuleReportsResponse>.ETagAction
ClientServiceRequest<ListRepricingRuleReportsResponse>.ModifyRequest
ClientServiceRequest<ListRepricingRuleReportsResponse>.ValidateParameters
ClientServiceRequest<ListRepricingRuleReportsResponse>.RequestParameters
ClientServiceRequest<ListRepricingRuleReportsResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
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
Assembly: Google.Apis.ShoppingContent.v2_1.dll
Syntax
public class ListRequest : ShoppingContentBaseServiceRequest<ListRepricingRuleReportsResponse>, IClientServiceRequest<ListRepricingRuleReportsResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, Int64, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, long merchantId, string ruleId)
Parameters
Type Name Description
IClientService service
System.Int64 merchantId
System.String ruleId

Properties

EndDate

Gets Repricing reports on and before this date in the merchant's timezone. You can only retrieve data up to 7 days ago (default) or earlier. Format: YYYY-MM-DD.

Declaration
[RequestParameter("endDate", RequestParameterType.Query)]
public virtual string EndDate { get; set; }
Property Value
Type Description
System.String

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.ListRepricingRuleReportsResponse>.HttpMethod

MerchantId

Required. Id of the merchant who owns the Repricing rule.

Declaration
[RequestParameter("merchantId", RequestParameterType.Path)]
public virtual long MerchantId { get; }
Property Value
Type Description
System.Int64

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.ListRepricingRuleReportsResponse>.MethodName

PageSize

Maximum number of daily reports to return. Each report includes data from a single 24-hour period. The page size defaults to 50 and values above 1000 are coerced to 1000. This service may return fewer days than this value, for example, if the time between your start and end date is less than page size.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PageToken

Token (if provided) to retrieve the subsequent page. All other parameters must match the original call that provided the page token.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.ListRepricingRuleReportsResponse>.RestPath

RuleId

Required. Id of the Repricing rule.

Declaration
[RequestParameter("ruleId", RequestParameterType.Path)]
public virtual string RuleId { get; }
Property Value
Type Description
System.String

StartDate

Gets Repricing reports on and after this date in the merchant's timezone, up to one year ago. Do not use a start date later than 7 days ago (default). Format: YYYY-MM-DD.

Declaration
[RequestParameter("startDate", RequestParameterType.Query)]
public virtual string StartDate { get; set; }
Property Value
Type Description
System.String

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.ShoppingContent.v2_1.ShoppingContentBaseServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.ListRepricingRuleReportsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top