Class CuratorsResource.ReportsResource.ResultsResource.FetchRowsRequest
Returns the result rows from a completed report. The caller must have previously called RunReport
and waited for that operation to complete. The rows will be returned according to the order
specified by the sorts member of the report definition.
Inheritance
Inherited Members
Namespace: Google.Apis.CurationPartners.v1
Assembly: Google.Apis.CurationPartners.v1.dll
Syntax
public class CuratorsResource.ReportsResource.ResultsResource.FetchRowsRequest : CurationPartnersBaseServiceRequest<FetchReportResultRowsResponse>, IClientServiceRequest<FetchReportResultRowsResponse>, IClientServiceRequest
Constructors
FetchRowsRequest(IClientService, string)
Constructs a new FetchRows request.
Declaration
public FetchRowsRequest(IClientService service, string name)
Parameters
| Type | Name | Description |
|---|---|---|
| IClientService | service | |
| string | name |
Properties
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
Name
The report result being fetched. Format:
curators/{account_id}/reports/{report_id}/results/{report_result_id}
Declaration
[RequestParameter("name", RequestParameterType.Path)]
public virtual string Name { get; }
Property Value
| Type | Description |
|---|---|
| string |
PageSize
Optional. The maximum number of rows to return. The service may return fewer than this value. If unspecified, at most 1,000 rows will be returned. The maximum value is 10,000; values greater than 10,000 will be reduced to 10,000.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
PageToken
Optional. A page token, received from a previous FetchReportResultRows call. Provide this to
retrieve the second and subsequent batches of rows.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
Methods
InitParameters()
Initializes FetchRows parameter list.
Declaration
protected override void InitParameters()