Class TimeSheetsRequestBuilder.TimeSheetsRequestBuilderGetQueryParameters
- Namespace
- Autodesk.ACC.CostManagement.V1.Projects.Item.TimeSheets
- Assembly
- Autodesk.ACC.CostManagement.dll
Gets all time sheets in given container
public class TimeSheetsRequestBuilder.TimeSheetsRequestBuilderGetQueryParameters
- Inheritance
-
TimeSheetsRequestBuilder.TimeSheetsRequestBuilderGetQueryParameters
- Inherited Members
Properties
FilterbudgetCode
Filter data that belong to associated budget code. For example, filter[budgetCode]=code
.
[QueryParameter("filter%5BbudgetCode%5D")]
public string? FilterbudgetCode { get; set; }
Property Value
FilterendDate
Filter data by its end date. This may be an ISO 8601 string or a range. Ranges can be lowerValue..upperValue, lowerValue.. or ..upperValue. The range tests are always inclusive of their endpoints.
[QueryParameter("filter%5BendDate%5D")]
public string? FilterendDate { get; set; }
Property Value
Filterid
The item's primary identifier. Separate multiple IDs with commas. For example, filter[id]=id1,id2
.
[QueryParameter("filter%5Bid%5D")]
public string[]? Filterid { get; set; }
Property Value
- string[]
FilterlastModifiedSince
Retrieves items that were modified from the specified date and time, in the following format, YYYY-MM-DDThh:mm:ss.sz. For example, filter[lastModifiedSince]=2020-03-01T13:00:00Z
.
[QueryParameter("filter%5BlastModifiedSince%5D")]
public string? FilterlastModifiedSince { get; set; }
Property Value
FilterstartDate
Filter data by its start date. This may be an ISO 8601 string or a range. Ranges can be lowerValue..upperValue, lowerValue.. or ..upperValue. The range tests are always inclusive of their endpoints.
[QueryParameter("filter%5BstartDate%5D")]
public string? FilterstartDate { get; set; }
Property Value
FiltertrackingItemInstanceId
Filter data that belong to associated tracking item instance id. For example, filter[trackingItemInstanceId]=id
.
[QueryParameter("filter%5BtrackingItemInstanceId%5D")]
public string? FiltertrackingItemInstanceId { get; set; }
Property Value
Include
Include additional resources in the response. For example, include=meta
will return the meta data. Possible values: meta
.
[QueryParameter("include")]
public string[]? Include { get; set; }
Property Value
- string[]
InternalLimit
The maximum number of items to return, this is for internal use, and the default maximum internal limit is 5000.
[QueryParameter("internalLimit")]
public int? InternalLimit { get; set; }
Property Value
- int?
Limit
The maximum number of items to return, default maximum limit is 100.
[QueryParameter("limit")]
public int? Limit { get; set; }
Property Value
- int?
Offset
The number of items to skip before starting to collect the result set.
[QueryParameter("offset")]
public int? Offset { get; set; }
Property Value
- int?
Q
The conditions to query against items, such as id=0
or (id>2
and id<4
). This parameter is deprecated in favor of the filter[]
based syntax.
[QueryParameter("q")]
public string? Q { get; set; }
Property Value
Sort
The sort order for items. Each attribute can be sorted in either asc
(default) or desc
order. For example, sort=name, updatedAt desc
or sort=name + updatedAt desc
sorts the results first by name in ascending order, then by date updated in descending order.
[QueryParameter("sort")]
public string? Sort { get; set; }