/** * 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. */ import type { PolicyEngineMode } from './PolicyEngineMode'; /** * Mixin to validate that a valid enterprise license * exists before allowing to save the object * @export * @interface PatchedRequestRuleBindingRequest */ export interface PatchedRequestRuleBindingRequest { /** * * @type {string} * @memberof PatchedRequestRuleBindingRequest */ uuid?: string; /** * * @type {PolicyEngineMode} * @memberof PatchedRequestRuleBindingRequest */ policyEngineMode?: PolicyEngineMode; /** * * @type {string} * @memberof PatchedRequestRuleBindingRequest */ rule?: string; /** * * @type {string} * @memberof PatchedRequestRuleBindingRequest */ target?: string; /** * How long a request against this binding stays pending before it automatically lapses if not approved or denied. * @type {string} * @memberof PatchedRequestRuleBindingRequest */ expiryPending?: string; /** * The maximum duration a grant approved against this binding can last. * @type {string} * @memberof PatchedRequestRuleBindingRequest */ expiryGrantedMax?: string; } /** * Check if a given object implements the PatchedRequestRuleBindingRequest interface. */ export declare function instanceOfPatchedRequestRuleBindingRequest(value: object): value is PatchedRequestRuleBindingRequest; export declare function PatchedRequestRuleBindingRequestFromJSON(json: any): PatchedRequestRuleBindingRequest; export declare function PatchedRequestRuleBindingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedRequestRuleBindingRequest; export declare function PatchedRequestRuleBindingRequestToJSON(json: any): PatchedRequestRuleBindingRequest; export declare function PatchedRequestRuleBindingRequestToJSONTyped(value?: PatchedRequestRuleBindingRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedRequestRuleBindingRequest.d.ts.map