Table of Contents

Class TaxesRequestBuilder.TaxesRequestBuilderGetQueryParameters

Namespace
Autodesk.ACC.CostManagement.V1.Projects.Item.Taxes
Assembly
Autodesk.ACC.CostManagement.dll

Get taxes on an associated model.

public class TaxesRequestBuilder.TaxesRequestBuilderGetQueryParameters
Inheritance
TaxesRequestBuilder.TaxesRequestBuilderGetQueryParameters
Inherited Members

Properties

AssociationId

The object ID of the item is associated to. For example, ID of the budget, contract or cost item. Use comma separated string for multiple IDs.

[QueryParameter("associationId")]
public string[]? AssociationId { get; set; }

Property Value

string[]

AssociationType

The type of the item is associated to. Possible values Budget, Contract, CostItem, FormInstance, Payment, BudgetPayment, Expense, OCO, SCO.

[Obsolete("This property is deprecated, use AssociationTypeAsGetAssociationTypeQueryParameterType instead")]
[QueryParameter("associationType")]
public string? AssociationType { get; set; }

Property Value

string

AssociationTypeAsGetAssociationTypeQueryParameterType

The type of the item is associated to. Possible values Budget, Contract, CostItem, FormInstance, Payment, BudgetPayment, Expense, OCO, SCO.

[QueryParameter("associationType")]
public GetAssociationTypeQueryParameterType? AssociationTypeAsGetAssociationTypeQueryParameterType { get; set; }

Property Value

GetAssociationTypeQueryParameterType?

Include

Include nested resources in the response. For example, include=items to include related tax items to each tax. Possible values: items.

[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?

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; }

Property Value

string