Class QueriesResource.ReportsResource.ListRequest
Lists reports generated by the provided query.
Inheritance
Inherited Members
Namespace: Google.Apis.DoubleClickBidManager.v2
Assembly: Google.Apis.DoubleClickBidManager.v2.dll
Syntax
public class QueriesResource.ReportsResource.ListRequest : DoubleClickBidManagerBaseServiceRequest<ListReportsResponse>, IClientServiceRequest<ListReportsResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService, long)
Constructs a new List request.
Declaration
public ListRequest(IClientService service, long queryId)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
long | queryId |
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
OrderBy
Field to sort the list by. Accepts the following values: * key.reportId
(default) The default
sorting order is ascending. To specify descending order for a field, add the suffix desc
to the
field name. For example, key.reportId desc
.
Declaration
[RequestParameter("orderBy", RequestParameterType.Query)]
public virtual string OrderBy { get; set; }
Property Value
Type | Description |
---|---|
string |
PageSize
Maximum number of results per page. Must be between 1
and 100
. Defaults to 100
if unspecified.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
A token identifying which page of results the server should return. Typically, this is the value of
nextPageToken returned from the previous call to the queries.reports.list
method. If unspecified,
the first page of results is returned.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
QueryId
Required. The ID of the query that generated the reports.
Declaration
[RequestParameter("queryId", RequestParameterType.Path)]
public virtual long QueryId { get; }
Property Value
Type | Description |
---|---|
long |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()