acquia-dam-sdk
Version:
Interact with the Acquia DAM API
23 lines (21 loc) • 386 B
TypeScript
interface ListAttributesParams {
/**
* Numeric limit of the total number of results to retrieve
*
* Minimum: 1
*
* Maximum: 1000
*
* @default 100
*/
limit?: number;
/**
* Starting position of query result set
*
* Minimum: 0
*
* @default 0
*/
offset?: number;
}
export type { ListAttributesParams };