/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0 * 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. */ /** * Data for a single logout URL * @export * @interface LogoutURL */ export interface LogoutURL { /** * * @type {string} * @memberof LogoutURL */ url: string; /** * * @type {string} * @memberof LogoutURL */ providerName?: string | null; /** * * @type {string} * @memberof LogoutURL */ binding?: string | null; /** * * @type {string} * @memberof LogoutURL */ samlRequest?: string | null; /** * * @type {string} * @memberof LogoutURL */ samlResponse?: string | null; /** * * @type {string} * @memberof LogoutURL */ samlRelayState?: string | null; } /** * Check if a given object implements the LogoutURL interface. */ export declare function instanceOfLogoutURL(value: object): value is LogoutURL; export declare function LogoutURLFromJSON(json: any): LogoutURL; export declare function LogoutURLFromJSONTyped(json: any, ignoreDiscriminator: boolean): LogoutURL; export declare function LogoutURLToJSON(json: any): LogoutURL; export declare function LogoutURLToJSONTyped(value?: LogoutURL | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=LogoutURL.d.ts.map