Class QueriesResource.ListRequest
Lists queries created by the current user.
Inheritance
QueriesResource.ListRequest
Inherited Members
Namespace: Google.Apis.DoubleClickBidManager.v2
Assembly: Google.Apis.DoubleClickBidManager.v2.dll
Syntax
public class QueriesResource.ListRequest : DoubleClickBidManagerBaseServiceRequest<ListQueriesResponse>, IClientServiceRequest<ListQueriesResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService)
Constructs a new List request.
Declaration
public ListRequest(IClientService service)
Parameters
| Type | Name | Description |
|---|---|---|
| IClientService | service |
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: * queryId (default) * metadata.title The
default sorting order is ascending. To specify descending order for a field, add the suffix desc to
the field name. For example, queryId 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.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 |
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()