Table of Contents

Class ScheduleOfValuesRequestBuilder.ScheduleOfValuesRequestBuilderGetQueryParameters

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

Retrieves all the schedule of values in the project.

public class ScheduleOfValuesRequestBuilder.ScheduleOfValuesRequestBuilderGetQueryParameters
Inheritance
ScheduleOfValuesRequestBuilder.ScheduleOfValuesRequestBuilderGetQueryParameters
Inherited Members

Properties

FilterbudgetId

The ID of the budget. Separate multiple IDs with commas. For example, filter[budgetId]=id1,id2, or filter these items that are not linked to any budget filter[budgetId]=blank.

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

Property Value

string[]

FiltercontractId

The Contract ID. Separate multiple IDs with commas. For example, filter[contractId]=id1,id2, or filter these items that are not linked to any contract filter[contractId]=blank.

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

Property Value

string[]

FilterincludeChangeOrders

true if you need all sovs. false filter items which are sco. Lowercase only.

[QueryParameter("filter%5BincludeChangeOrders%5D")]
public bool? FilterincludeChangeOrders { get; set; }

Property Value

bool?

Include

Include nested resources in the response. For example, include=subitems will return the sovs. include=attributes will return custom attributes which represents the "properties" in the response. Possible values: subitems, attributes.

[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

string

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