/** * 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. */ /** * Returns a single link * @export * @interface Link */ export interface Link { /** * * @type {string} * @memberof Link */ link: string; } /** * Check if a given object implements the Link interface. */ export declare function instanceOfLink(value: object): value is Link; export declare function LinkFromJSON(json: any): Link; export declare function LinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): Link; export declare function LinkToJSON(json: any): Link; export declare function LinkToJSONTyped(value?: Link | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Link.d.ts.map