Show / Hide Table of Contents

Class MobileAppsResource.ListRequest

Retrieves list of available mobile apps.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<MobileAppsListResponse>
DfareportingBaseServiceRequest<MobileAppsListResponse>
MobileAppsResource.ListRequest
Implements
IClientServiceRequest<MobileAppsListResponse>
IClientServiceRequest
Inherited Members
DfareportingBaseServiceRequest<MobileAppsListResponse>.Alt
DfareportingBaseServiceRequest<MobileAppsListResponse>.Fields
DfareportingBaseServiceRequest<MobileAppsListResponse>.Key
DfareportingBaseServiceRequest<MobileAppsListResponse>.OauthToken
DfareportingBaseServiceRequest<MobileAppsListResponse>.PrettyPrint
DfareportingBaseServiceRequest<MobileAppsListResponse>.QuotaUser
DfareportingBaseServiceRequest<MobileAppsListResponse>.UserIp
ClientServiceRequest<MobileAppsListResponse>.Execute()
ClientServiceRequest<MobileAppsListResponse>.ExecuteAsStream()
ClientServiceRequest<MobileAppsListResponse>.ExecuteAsync()
ClientServiceRequest<MobileAppsListResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<MobileAppsListResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<MobileAppsListResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<MobileAppsListResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<MobileAppsListResponse>.GenerateRequestUri()
ClientServiceRequest<MobileAppsListResponse>.GetBody()
ClientServiceRequest<MobileAppsListResponse>.GetDefaultETagAction(String)
ClientServiceRequest<MobileAppsListResponse>.ETagAction
ClientServiceRequest<MobileAppsListResponse>.ModifyRequest
ClientServiceRequest<MobileAppsListResponse>.RequestParameters
ClientServiceRequest<MobileAppsListResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
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_2
Assembly: Google.Apis.Dfareporting.v3_2.dll
Syntax
public class ListRequest : DfareportingBaseServiceRequest<MobileAppsListResponse>, IClientServiceRequest<MobileAppsListResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, Int64)

Constructs a new List request.

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

Properties

Directories

Select only apps from these directories.

Declaration
[RequestParameter("directories", RequestParameterType.Query)]
public virtual MobileAppsResource.ListRequest.DirectoriesEnum? Directories { get; set; }
Property Value
Type Description
System.Nullable<MobileAppsResource.ListRequest.DirectoriesEnum>

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_2.Data.MobileAppsListResponse>.HttpMethod

Ids

Select only apps with these IDs.

Declaration
[RequestParameter("ids", RequestParameterType.Query)]
public virtual Repeatable<string> Ids { get; set; }
Property Value
Type Description
Repeatable<System.String>

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_2.Data.MobileAppsListResponse>.MethodName

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_2.Data.MobileAppsListResponse>.RestPath

SearchString

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

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

Methods

InitParameters()

Initializes List parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top