Table of Contents

Class PropertiesRequestBuilder.PropertiesRequestBuilderGetQueryParameters

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

Lists all the attribute definitions created to define custom attributes for a given module.

public class PropertiesRequestBuilder.PropertiesRequestBuilderGetQueryParameters
Inheritance
PropertiesRequestBuilder.PropertiesRequestBuilderGetQueryParameters
Inherited Members

Properties

FilterassociationId

The ID of the object is associated. For example, the ID of a budget, contract, or cost item. Separate multiple IDs with commas. For example, filter[associationId]=id1,id2.

[QueryParameter("filter%5BassociationId%5D")]
public string[]? FilterassociationId { get; set; }

Property Value

string[]

FilterassociationType

The type of the item associated to. Possible values Budget, Contract, CostItem, FormDefinition, CostPayment, BudgetPayment, Expense, ExpenseItem. For example, filter[associationType]=Budget.

[QueryParameter("filter%5BassociationType%5D")]
public string? FilterassociationType { get; set; }

Property Value

string

Filtercategory

The module name: Budget, Contract, PCO, CostItem, RCO..... For example, filter[category]=Contract. Deprecated and please use associationId and associationType instead

[QueryParameter("filter%5Bcategory%5D")]
public string? Filtercategory { 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

string

Filtername

The item's name. For example, filter[name]=Labor.

[QueryParameter("filter%5Bname%5D")]
public string? Filtername { 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