/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * 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 CreateAppDto */ export interface CreateAppDto { /** * The name of the app. * @type {string} * @memberof CreateAppDto */ name: string; /** * Initialize the app with the inbuilt template. * @type {string} * @memberof CreateAppDto */ template?: string | null; } /** * Check if a given object implements the CreateAppDto interface. */ export declare function instanceOfCreateAppDto(value: any): value is CreateAppDto; export declare function CreateAppDtoFromJSON(json: any): CreateAppDto; export declare function CreateAppDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): CreateAppDto; export declare function CreateAppDtoToJSON(value?: CreateAppDto | null, _ignoreDiscriminator?: boolean): any;