/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface AIModelTrainingRequest */ export interface AIModelTrainingRequest { /** * * @type {string} * @memberof AIModelTrainingRequest */ name: string | null; /** * * @type {string} * @memberof AIModelTrainingRequest */ dataset: string; /** * * @type {Array} * @memberof AIModelTrainingRequest */ categories?: Array; /** * * @type {string} * @memberof AIModelTrainingRequest */ continueFrom?: string | null; /** * * @type {{ [key: string]: string | undefined; }} * @memberof AIModelTrainingRequest */ parameters: { [key: string]: string | undefined; }; } export declare function AIModelTrainingRequestFromJSON(json: any): AIModelTrainingRequest; export declare function AIModelTrainingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AIModelTrainingRequest; export declare function AIModelTrainingRequestToJSON(value?: AIModelTrainingRequest | null): any;