Class ObjectsRequestBuilder.ObjectsRequestBuilderGetQueryParameters
- Assembly
- Autodesk.DataManagement.dll
List objects in a bucket. It is only available to the bucket creator.
public class ObjectsRequestBuilder.ObjectsRequestBuilderGetQueryParameters
- Inheritance
-
ObjectsRequestBuilder.ObjectsRequestBuilderGetQueryParameters
- Inherited Members
Properties
BeginsWith
Provides a way to filter the based on object key name
[QueryParameter("beginsWith")]
public string? BeginsWith { get; set; }
Property Value
Limit
Limit to the response size,Acceptable values: 1-100 Default = 10
[QueryParameter("limit")]
public int? Limit { get; set; }
Property Value
- int?
StartAt
Key to use as an offset to continue pagination. This is typically the last bucket key found in a preceding GET buckets response
[QueryParameter("startAt")]
public string? StartAt { get; set; }