Class ContractsSearchRequestBuilder.ContractsSearchRequestBuilderPostQueryParameters
- Assembly
- Autodesk.ACC.CostManagement.dll
Returns all the contracts in a specific project.
public class ContractsSearchRequestBuilder.ContractsSearchRequestBuilderPostQueryParameters
- Inheritance
-
ContractsSearchRequestBuilder.ContractsSearchRequestBuilderPostQueryParameters
- Inherited Members
Properties
CursorState
The cursor token to get the next page of results.
[QueryParameter("cursorState")]
public string? CursorState { get; set; }
Property Value
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?
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; }