/** * 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 RestoreRequestDto */ export interface RestoreRequestDto { /** * The name of the app. * @type {string} * @memberof RestoreRequestDto */ name?: string | null; /** * The url to the restore file. * @type {string} * @memberof RestoreRequestDto */ url: string; } /** * Check if a given object implements the RestoreRequestDto interface. */ export declare function instanceOfRestoreRequestDto(value: any): value is RestoreRequestDto; export declare function RestoreRequestDtoFromJSON(json: any): RestoreRequestDto; export declare function RestoreRequestDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): RestoreRequestDto; export declare function RestoreRequestDtoToJSON(value?: RestoreRequestDto | null, _ignoreDiscriminator?: boolean): any;