Class InventoryItemsResource.ListRequest
Retrieves a list of inventory items, possibly filtered. This method supports paging.
Inheritance
InventoryItemsResource.ListRequest
Inherited Members
Namespace: Google.Apis.Dfareporting.v4
Assembly: Google.Apis.Dfareporting.v4.dll
Syntax
public class InventoryItemsResource.ListRequest : DfareportingBaseServiceRequest<InventoryItemsListResponse>, IClientServiceRequest<InventoryItemsListResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService, long, long)
Constructs a new List request.
Declaration
public ListRequest(IClientService service, long profileId, long projectId)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
long | profileId | |
long | projectId |
Properties
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Ids
Select only inventory items with these IDs.
Declaration
[RequestParameter("ids", RequestParameterType.Query)]
public virtual Repeatable<string> Ids { get; set; }
Property Value
Type | Description |
---|---|
Repeatable<string> |
InPlan
Select only inventory items that are in plan.
Declaration
[RequestParameter("inPlan", RequestParameterType.Query)]
public virtual bool? InPlan { get; set; }
Property Value
Type | Description |
---|---|
bool? |
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
OrderId
Select only inventory items that belong to specified orders.
Declaration
[RequestParameter("orderId", RequestParameterType.Query)]
public virtual Repeatable<string> OrderId { get; set; }
Property Value
Type | Description |
---|---|
Repeatable<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 |
---|---|
string |
ProfileId
User profile ID associated with this request.
Declaration
[RequestParameter("profileId", RequestParameterType.Path)]
public virtual long ProfileId { get; }
Property Value
Type | Description |
---|---|
long |
ProjectId
Project ID for order documents.
Declaration
[RequestParameter("projectId", RequestParameterType.Path)]
public virtual long ProjectId { get; }
Property Value
Type | Description |
---|---|
long |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
SiteId
Select only inventory items that are associated with these sites.
Declaration
[RequestParameter("siteId", RequestParameterType.Query)]
public virtual Repeatable<string> SiteId { get; set; }
Property Value
Type | Description |
---|---|
Repeatable<string> |
SortField
Field by which to sort the list.
Declaration
[RequestParameter("sortField", RequestParameterType.Query)]
public virtual InventoryItemsResource.ListRequest.SortFieldEnum? SortField { get; set; }
Property Value
Type | Description |
---|---|
InventoryItemsResource.ListRequest.SortFieldEnum? |
SortOrder
Order of sorted results.
Declaration
[RequestParameter("sortOrder", RequestParameterType.Query)]
public virtual InventoryItemsResource.ListRequest.SortOrderEnum? SortOrder { get; set; }
Property Value
Type | Description |
---|---|
InventoryItemsResource.ListRequest.SortOrderEnum? |
Type
Select only inventory items with this type.
Declaration
[RequestParameter("type", RequestParameterType.Query)]
public virtual InventoryItemsResource.ListRequest.TypeEnum? Type { get; set; }
Property Value
Type | Description |
---|---|
InventoryItemsResource.ListRequest.TypeEnum? |
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()