1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/frontend/src/openapi/models/getApplicationsParams.ts
2024-02-22 12:50:17 +01:00

29 lines
694 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
export type GetApplicationsParams = {
/**
* The search query for the application name
*/
query?: string;
/**
* The number of applications to skip when returning a page. By default it is set to 0.
*/
offset?: string;
/**
* The number of applications to return in a page. By default it is set to 1000.
*/
limit?: string;
/**
* The field to sort the results by. By default it is set to "appName".
*/
sortBy?: string;
/**
* The sort order for the sortBy. By default it is det to "asc".
*/
sortOrder?: string;
};