Class MobileAppsResource.ListRequest
Retrieves list of available mobile apps.
Inheritance
Inherited Members
Namespace: Google.Apis.Dfareporting.v4
Assembly: Google.Apis.Dfareporting.v4.dll
Syntax
public class MobileAppsResource.ListRequest : DfareportingBaseServiceRequest<MobileAppsListResponse>, IClientServiceRequest<MobileAppsListResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService, long)
Constructs a new List request.
Declaration
public ListRequest(IClientService service, long profileId)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
long | 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 |
---|---|
MobileAppsResource.ListRequest.DirectoriesEnum? |
Remarks
Use this property to set a single value for the parameter, or DirectoriesList to set multiple values. Do not set both properties.
DirectoriesList
Select only apps from these directories.
Declaration
[RequestParameter("directories", RequestParameterType.Query)]
public virtual Repeatable<MobileAppsResource.ListRequest.DirectoriesEnum> DirectoriesList { get; set; }
Property Value
Type | Description |
---|---|
Repeatable<MobileAppsResource.ListRequest.DirectoriesEnum> |
Remarks
Use this property to set one or more values for the parameter. Do not set both this property and Directories.
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Ids
Select only apps with these IDs.
Declaration
[RequestParameter("ids", RequestParameterType.Query)]
public virtual Repeatable<string> Ids { get; set; }
Property Value
Type | Description |
---|---|
Repeatable<string> |
MaxResults
Maximum number of results to return.
Declaration
[RequestParameter("maxResults", RequestParameterType.Query)]
public virtual int? MaxResults { get; set; }
Property Value
Type | Description |
---|---|
int? |
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
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 |
---|---|
string |
ProfileId
User profile ID associated with this request.
Declaration
[RequestParameter("profileId", RequestParameterType.Path)]
public virtual long ProfileId { get; }
Property Value
Type | Description |
---|---|
long |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
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 |
---|---|
string |
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()