/** * Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { DataTemplateCodeExecutionConfigurationDto } from './data-template-code-execution-configuration-dto'; /** * * @export * @interface CreateDemoRequestDto */ export interface CreateDemoRequestDto { /** * If provided, then a demo user with that email will be created. Otherwise, you must be logged in to create a demo environment * @type {string} * @memberof CreateDemoRequestDto */ demoUserEmail?: string; /** * * @type {DataTemplateCodeExecutionConfigurationDto} * @memberof CreateDemoRequestDto */ dataTemplateCodeExecutionConfiguration: DataTemplateCodeExecutionConfigurationDto; }