/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { PartialUser } from './PartialUser'; import type { ContentType } from './ContentType'; /** * Mixin to validate that a valid enterprise license * exists before allowing to save the object * @export * @interface DataExport */ export interface DataExport { /** * * @type {string} * @memberof DataExport */ readonly id: string; /** * * @type {PartialUser} * @memberof DataExport */ readonly requestedBy: PartialUser; /** * * @type {Date} * @memberof DataExport */ readonly requestedOn: Date; /** * * @type {ContentType} * @memberof DataExport */ readonly contentType: ContentType; /** * * @type {{ [key: string]: any; }} * @memberof DataExport */ queryParams: { [key: string]: any; }; /** * * @type {string} * @memberof DataExport */ readonly fileUrl: string; /** * * @type {boolean} * @memberof DataExport */ readonly completed: boolean; } /** * Check if a given object implements the DataExport interface. */ export declare function instanceOfDataExport(value: object): value is DataExport; export declare function DataExportFromJSON(json: any): DataExport; export declare function DataExportFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataExport; export declare function DataExportToJSON(json: any): DataExport; export declare function DataExportToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DataExport.d.ts.map