Show / Hide Table of Contents

Class RemarketingListsResource.ListRequest

Retrieves a list of remarketing lists, possibly filtered. This method supports paging.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<RemarketingListsListResponse>
DfareportingBaseServiceRequest<RemarketingListsListResponse>
RemarketingListsResource.ListRequest
Implements
IClientServiceRequest<RemarketingListsListResponse>
IClientServiceRequest
Inherited Members
DfareportingBaseServiceRequest<RemarketingListsListResponse>.Xgafv
DfareportingBaseServiceRequest<RemarketingListsListResponse>.AccessToken
DfareportingBaseServiceRequest<RemarketingListsListResponse>.Alt
DfareportingBaseServiceRequest<RemarketingListsListResponse>.Callback
DfareportingBaseServiceRequest<RemarketingListsListResponse>.Fields
DfareportingBaseServiceRequest<RemarketingListsListResponse>.Key
DfareportingBaseServiceRequest<RemarketingListsListResponse>.OauthToken
DfareportingBaseServiceRequest<RemarketingListsListResponse>.PrettyPrint
DfareportingBaseServiceRequest<RemarketingListsListResponse>.QuotaUser
DfareportingBaseServiceRequest<RemarketingListsListResponse>.UploadType
DfareportingBaseServiceRequest<RemarketingListsListResponse>.UploadProtocol
ClientServiceRequest<RemarketingListsListResponse>.Execute()
ClientServiceRequest<RemarketingListsListResponse>.ExecuteAsStream()
ClientServiceRequest<RemarketingListsListResponse>.ExecuteAsync()
ClientServiceRequest<RemarketingListsListResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<RemarketingListsListResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<RemarketingListsListResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<RemarketingListsListResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<RemarketingListsListResponse>.GenerateRequestUri()
ClientServiceRequest<RemarketingListsListResponse>.GetBody()
ClientServiceRequest<RemarketingListsListResponse>.GetDefaultETagAction(String)
ClientServiceRequest<RemarketingListsListResponse>.ETagAction
ClientServiceRequest<RemarketingListsListResponse>.ModifyRequest
ClientServiceRequest<RemarketingListsListResponse>.ValidateParameters
ClientServiceRequest<RemarketingListsListResponse>.RequestParameters
ClientServiceRequest<RemarketingListsListResponse>.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.Dfareporting.v3_3
Assembly: Google.Apis.Dfareporting.v3_3.dll
Syntax
public class ListRequest : DfareportingBaseServiceRequest<RemarketingListsListResponse>, IClientServiceRequest<RemarketingListsListResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, Int64, Int64)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, long profileId, long advertiserId)
Parameters
Type Name Description
IClientService service
System.Int64 profileId
System.Int64 advertiserId

Properties

Active

Select only active or only inactive remarketing lists.

Declaration
[RequestParameter("active", RequestParameterType.Query)]
public virtual bool? Active { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

AdvertiserId

Select only remarketing lists owned by this advertiser.

Declaration
[RequestParameter("advertiserId", RequestParameterType.Query)]
public virtual long AdvertiserId { get; }
Property Value
Type Description
System.Int64

FloodlightActivityId

Select only remarketing lists that have this floodlight activity ID.

Declaration
[RequestParameter("floodlightActivityId", RequestParameterType.Query)]
public virtual long? FloodlightActivityId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

HttpMethod

Gets the HTTP method.

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

MaxResults

Maximum number of results to return.

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

MethodName

Gets the method name.

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

Name

Allows searching for objects by name or ID. Wildcards () are allowed. For example, "remarketing list2015" will return objects with names like "remarketing list June 2015", "remarketing list April 2015", or simply "remarketing list 2015". Most of the searches also add wildcards implicitly at the start and the end of the search string. For example, a search string of "remarketing list" will match objects with name "my remarketing list", "remarketing list 2015", or simply "remarketing list".

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

PageToken

Value of the nextPageToken from the previous result page.

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

ProfileId

User profile ID associated with this request.

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

RestPath

Gets the REST path.

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

SortField

Field by which to sort the list.

Declaration
[RequestParameter("sortField", RequestParameterType.Query)]
public virtual RemarketingListsResource.ListRequest.SortFieldEnum? SortField { get; set; }
Property Value
Type Description
System.Nullable<RemarketingListsResource.ListRequest.SortFieldEnum>

SortOrder

Order of sorted results.

Declaration
[RequestParameter("sortOrder", RequestParameterType.Query)]
public virtual RemarketingListsResource.ListRequest.SortOrderEnum? SortOrder { get; set; }
Property Value
Type Description
System.Nullable<RemarketingListsResource.ListRequest.SortOrderEnum>

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Dfareporting.v3_3.DfareportingBaseServiceRequest<Google.Apis.Dfareporting.v3_3.Data.RemarketingListsListResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top