/** * 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 LogDownloadDto */ export interface LogDownloadDto { /** * The url to download the log. * @type {string} * @memberof LogDownloadDto */ downloadUrl?: string | null; } /** * Check if a given object implements the LogDownloadDto interface. */ export declare function instanceOfLogDownloadDto(value: any): value is LogDownloadDto; export declare function LogDownloadDtoFromJSON(json: any): LogDownloadDto; export declare function LogDownloadDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): LogDownloadDto; export declare function LogDownloadDtoToJSON(value?: LogDownloadDto | null, _ignoreDiscriminator?: boolean): any;