Class SearchRequest
Request message for the ReportService.Search method.
Implements
Inherited Members
Namespace: Google.Apis.Merchant.reports_v1beta.Data
Assembly: Google.Apis.Merchant.reports_v1beta.dll
Syntax
public class SearchRequest : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
PageSize
Optional. Number of ReportRows to retrieve in a single page. Defaults to 1000. Values above 5000 are
coerced to 5000.
Declaration
[JsonProperty("pageSize")]
public virtual int? PageSize { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
PageToken
Optional. Token of the page to retrieve. If not specified, the first page of results is returned. In order
to request the next page of results, the value obtained from next_page_token in the previous response
should be used.
Declaration
[JsonProperty("pageToken")]
public virtual string PageToken { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Query
Required. Query that defines a report to be retrieved. For details on how to construct your query, see the Query Language guide. For the full list of available tables and fields, see the Available fields.
Declaration
[JsonProperty("query")]
public virtual string Query { get; set; }
Property Value
| Type | Description |
|---|---|
| string |