/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * 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. */ /** * VersionHistory Serializer * @export * @interface VersionHistory */ export interface VersionHistory { /** * * @type {number} * @memberof VersionHistory */ readonly id: number; /** * * @type {Date} * @memberof VersionHistory */ timestamp: Date; /** * * @type {string} * @memberof VersionHistory */ version: string; /** * * @type {string} * @memberof VersionHistory */ build: string; } /** * Check if a given object implements the VersionHistory interface. */ export declare function instanceOfVersionHistory(value: object): value is VersionHistory; export declare function VersionHistoryFromJSON(json: any): VersionHistory; export declare function VersionHistoryFromJSONTyped(json: any, ignoreDiscriminator: boolean): VersionHistory; export declare function VersionHistoryToJSON(json: any): VersionHistory; export declare function VersionHistoryToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=VersionHistory.d.ts.map