/** * 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. */ /** * Dummy Policy Serializer * @export * @interface DummyPolicyRequest */ export interface DummyPolicyRequest { /** * * @type {string} * @memberof DummyPolicyRequest */ name: string; /** * When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged. * @type {boolean} * @memberof DummyPolicyRequest */ executionLogging?: boolean; /** * * @type {boolean} * @memberof DummyPolicyRequest */ result?: boolean; /** * * @type {number} * @memberof DummyPolicyRequest */ waitMin?: number; /** * * @type {number} * @memberof DummyPolicyRequest */ waitMax?: number; } /** * Check if a given object implements the DummyPolicyRequest interface. */ export declare function instanceOfDummyPolicyRequest(value: object): value is DummyPolicyRequest; export declare function DummyPolicyRequestFromJSON(json: any): DummyPolicyRequest; export declare function DummyPolicyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DummyPolicyRequest; export declare function DummyPolicyRequestToJSON(json: any): DummyPolicyRequest; export declare function DummyPolicyRequestToJSONTyped(value?: DummyPolicyRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DummyPolicyRequest.d.ts.map