/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0-rc7 * 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'; import type { RelatedTarget } from './RelatedTarget'; import type { RequestRule } from './RequestRule'; /** * Mixin to validate that a valid enterprise license * exists before allowing to save the object * @export * @interface RequestRuleBinding */ export interface RequestRuleBinding { /** * * @type {string} * @memberof RequestRuleBinding */ uuid?: string; /** * * @type {string} * @memberof RequestRuleBinding */ readonly pbmUuid: string; /** * * @type {PolicyEngineMode} * @memberof RequestRuleBinding */ policyEngineMode?: PolicyEngineMode; /** * * @type {string} * @memberof RequestRuleBinding */ rule: string; /** * * @type {RequestRule} * @memberof RequestRuleBinding */ readonly ruleObj: RequestRule; /** * * @type {string} * @memberof RequestRuleBinding */ target: string; /** * * @type {Array} * @memberof RequestRuleBinding */ readonly related: Array; /** * * @type {Array} * @memberof RequestRuleBinding */ readonly relatedObj: Array; /** * How long a request against this binding stays pending before it automatically lapses if not approved or denied. * @type {string} * @memberof RequestRuleBinding */ expiryPending?: string; /** * The maximum duration a grant approved against this binding can last. * @type {string} * @memberof RequestRuleBinding */ expiryGrantedMax?: string; } /** * Check if a given object implements the RequestRuleBinding interface. */ export declare function instanceOfRequestRuleBinding(value: object): value is RequestRuleBinding; export declare function RequestRuleBindingFromJSON(json: any): RequestRuleBinding; export declare function RequestRuleBindingFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestRuleBinding; export declare function RequestRuleBindingToJSON(json: any): RequestRuleBinding; export declare function RequestRuleBindingToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RequestRuleBinding.d.ts.map