/** * 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. */ import type { MatchingModeEnum } from './MatchingModeEnum'; /** * A single allowed redirect URI entry * @export * @interface RedirectURI */ export interface RedirectURI { /** * * @type {MatchingModeEnum} * @memberof RedirectURI */ matchingMode: MatchingModeEnum; /** * * @type {string} * @memberof RedirectURI */ url: string; } /** * Check if a given object implements the RedirectURI interface. */ export declare function instanceOfRedirectURI(value: object): value is RedirectURI; export declare function RedirectURIFromJSON(json: any): RedirectURI; export declare function RedirectURIFromJSONTyped(json: any, ignoreDiscriminator: boolean): RedirectURI; export declare function RedirectURIToJSON(json: any): RedirectURI; export declare function RedirectURIToJSONTyped(value?: RedirectURI | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RedirectURI.d.ts.map