/** * 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. */ /** * * @export * @interface UserServiceAccountRequest */ export interface UserServiceAccountRequest { /** * * @type {string} * @memberof UserServiceAccountRequest */ name: string; /** * * @type {boolean} * @memberof UserServiceAccountRequest */ createGroup?: boolean; /** * * @type {boolean} * @memberof UserServiceAccountRequest */ expiring?: boolean; /** * If not provided, valid for 360 days * @type {Date} * @memberof UserServiceAccountRequest */ expires?: Date; } /** * Check if a given object implements the UserServiceAccountRequest interface. */ export declare function instanceOfUserServiceAccountRequest(value: object): value is UserServiceAccountRequest; export declare function UserServiceAccountRequestFromJSON(json: any): UserServiceAccountRequest; export declare function UserServiceAccountRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserServiceAccountRequest; export declare function UserServiceAccountRequestToJSON(json: any): UserServiceAccountRequest; export declare function UserServiceAccountRequestToJSONTyped(value?: UserServiceAccountRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserServiceAccountRequest.d.ts.map