Class PaymentItemsRequestBuilder.PaymentItemsRequestBuilderGetQueryParameters
- Namespace
- Autodesk.ACC.CostManagement.V1.Projects.Item.PaymentItems
- Assembly
- Autodesk.ACC.CostManagement.dll
Gets payment items by paymentId, or associationId and associationType.
public class PaymentItemsRequestBuilder.PaymentItemsRequestBuilderGetQueryParameters
- Inheritance
-
PaymentItemsRequestBuilder.PaymentItemsRequestBuilderGetQueryParameters
- Inherited Members
Properties
FilterassociationId
The associationId. Separate multiple IDs with commas. For example,filter[associationId]=id1,id2
[QueryParameter("filter%5BassociationId%5D")]
public Guid?[]? FilterassociationId { get; set; }
Property Value
- Guid?[]
FilterassociationType
The type of the item is associated to.
[QueryParameter("filter%5BassociationType%5D")]
public string? FilterassociationType { get; set; }
Property Value
FilterpaymentId
The paymentId. Separate multiple IDs with commas. For example,filter[paymentId]=id1,id2
[QueryParameter("filter%5BpaymentId%5D")]
public Guid?[]? FilterpaymentId { get; set; }
Property Value
- Guid?[]
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?
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; }