/** * 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. */ /** * Account adding/removing operations * @export * @interface UserAccountRequest */ export interface UserAccountRequest { /** * * @type {number} * @memberof UserAccountRequest */ pk: number; } /** * Check if a given object implements the UserAccountRequest interface. */ export declare function instanceOfUserAccountRequest(value: object): value is UserAccountRequest; export declare function UserAccountRequestFromJSON(json: any): UserAccountRequest; export declare function UserAccountRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserAccountRequest; export declare function UserAccountRequestToJSON(json: any): UserAccountRequest; export declare function UserAccountRequestToJSONTyped(value?: UserAccountRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserAccountRequest.d.ts.map