2024-02-15 10:45:35 +01:00
|
|
|
/**
|
|
|
|
* Generated by Orval
|
|
|
|
* Do not edit manually.
|
|
|
|
* See `gen:api` script in package.json
|
|
|
|
*/
|
|
|
|
|
|
|
|
export type GetProjectApplicationsParams = {
|
|
|
|
/**
|
|
|
|
* The search query for the application name, sdk, environment
|
|
|
|
*/
|
|
|
|
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 50.
|
|
|
|
*/
|
|
|
|
limit?: string;
|
|
|
|
/**
|
2024-02-21 10:31:06 +01:00
|
|
|
* The field to sort the results by. By default it is set to "appName".
|
2024-02-15 10:45:35 +01:00
|
|
|
*/
|
|
|
|
sortBy?: string;
|
|
|
|
/**
|
|
|
|
* The sort order for the sortBy. By default it is det to "asc".
|
|
|
|
*/
|
|
|
|
sortOrder?: string;
|
|
|
|
};
|