/** * 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. */ /** * RACProvider Serializer * @export * @interface PatchedRACProviderRequest */ export interface PatchedRACProviderRequest { /** * * @type {string} * @memberof PatchedRACProviderRequest */ name?: string; /** * Flow used for authentication when the associated application is accessed by an un-authenticated user. * @type {string} * @memberof PatchedRACProviderRequest */ authenticationFlow?: string | null; /** * Flow used when authorizing this provider. * @type {string} * @memberof PatchedRACProviderRequest */ authorizationFlow?: string; /** * * @type {Array} * @memberof PatchedRACProviderRequest */ propertyMappings?: Array; /** * * @type {{ [key: string]: any; }} * @memberof PatchedRACProviderRequest */ settings?: { [key: string]: any; }; /** * Determines how long a session lasts. Default of 0 means that the sessions lasts until the browser is closed. (Format: hours=-1;minutes=-2;seconds=-3) * @type {string} * @memberof PatchedRACProviderRequest */ connectionExpiry?: string; /** * When set to true, connection tokens will be deleted upon disconnect. * @type {boolean} * @memberof PatchedRACProviderRequest */ deleteTokenOnDisconnect?: boolean; } /** * Check if a given object implements the PatchedRACProviderRequest interface. */ export declare function instanceOfPatchedRACProviderRequest(value: object): value is PatchedRACProviderRequest; export declare function PatchedRACProviderRequestFromJSON(json: any): PatchedRACProviderRequest; export declare function PatchedRACProviderRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedRACProviderRequest; export declare function PatchedRACProviderRequestToJSON(json: any): PatchedRACProviderRequest; export declare function PatchedRACProviderRequestToJSONTyped(value?: PatchedRACProviderRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedRACProviderRequest.d.ts.map