/** * 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 UpdateAppDto */ export interface UpdateAppDto { /** * The optional label of your app. * @type {string} * @memberof UpdateAppDto */ label?: string | null; /** * The optional description of your app. * @type {string} * @memberof UpdateAppDto */ description?: string | null; } /** * Check if a given object implements the UpdateAppDto interface. */ export declare function instanceOfUpdateAppDto(value: any): value is UpdateAppDto; export declare function UpdateAppDtoFromJSON(json: any): UpdateAppDto; export declare function UpdateAppDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): UpdateAppDto; export declare function UpdateAppDtoToJSON(value?: UpdateAppDto | null, _ignoreDiscriminator?: boolean): any;