/** * 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 { PolicyBehaviorEnum } from './PolicyBehaviorEnum'; /** * Base serializer class which doesn't implement create/update methods * @export * @interface AgentCreateRequest */ export interface AgentCreateRequest { /** * * @type {number} * @memberof AgentCreateRequest */ parent?: number; /** * * @type {string} * @memberof AgentCreateRequest */ label?: string; /** * * @type {boolean} * @memberof AgentCreateRequest */ expiring?: boolean; /** * * @type {Date} * @memberof AgentCreateRequest */ expires?: Date | null; /** * * @type {PolicyBehaviorEnum} * @memberof AgentCreateRequest */ policyBehavior?: PolicyBehaviorEnum; } /** * Check if a given object implements the AgentCreateRequest interface. */ export declare function instanceOfAgentCreateRequest(value: object): value is AgentCreateRequest; export declare function AgentCreateRequestFromJSON(json: any): AgentCreateRequest; export declare function AgentCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentCreateRequest; export declare function AgentCreateRequestToJSON(json: any): AgentCreateRequest; export declare function AgentCreateRequestToJSONTyped(value?: AgentCreateRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AgentCreateRequest.d.ts.map