Class AttachmentsRequestBuilder.AttachmentsRequestBuilderGetQueryParameters
- Namespace
- Autodesk.ACC.CostManagement.V1.Projects.Item.Attachments
- Assembly
- Autodesk.ACC.CostManagement.dll
Gets all the attachments associated with an item such as a budget, contract, or cost item.
public class AttachmentsRequestBuilder.AttachmentsRequestBuilderGetQueryParameters
- Inheritance
-
AttachmentsRequestBuilder.AttachmentsRequestBuilderGetQueryParameters
- 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
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
Include
Include nested resources in the response. For example, include=complianceRequirement
to include related compliance requirement to each attachment. Possible values: complianceRequirement
.
[QueryParameter("include")]
public string[]? Include { get; set; }
Property Value
- string[]