1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-16 00:06:40 +01:00
unleash.unleash/frontend/src/openapi/models/importTogglesValidateSchema.ts

19 lines
839 B
TypeScript
Raw Normal View History

/**
2023-03-15 13:30:07 +01:00
* Generated by Orval
* Do not edit manually.
2023-03-15 13:30:07 +01:00
* See `gen:api` script in package.json
*/
import type { ImportTogglesValidateItemSchema } from './importTogglesValidateItemSchema';
/**
* An object containing [feature import](https://docs.getunleash.io/reference/deploy/environment-import-export) validation results.
*/
export interface ImportTogglesValidateSchema {
/** A list of errors that prevent the provided data from being successfully imported. */
errors: ImportTogglesValidateItemSchema[];
/** A list of warnings related to the provided data. */
warnings: ImportTogglesValidateItemSchema[];
/** Any additional permissions required to import the data. If the list is empty, you require no additional permissions beyond what your user already has. */
permissions?: ImportTogglesValidateItemSchema[];
}