/** * 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 RedirectURIRequest */ export interface RedirectURIRequest { /** * * @type {MatchingModeEnum} * @memberof RedirectURIRequest */ matchingMode: MatchingModeEnum; /** * * @type {string} * @memberof RedirectURIRequest */ url: string; } /** * Check if a given object implements the RedirectURIRequest interface. */ export declare function instanceOfRedirectURIRequest(value: object): value is RedirectURIRequest; export declare function RedirectURIRequestFromJSON(json: any): RedirectURIRequest; export declare function RedirectURIRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RedirectURIRequest; export declare function RedirectURIRequestToJSON(json: any): RedirectURIRequest; export declare function RedirectURIRequestToJSONTyped(value?: RedirectURIRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RedirectURIRequest.d.ts.map