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