/** * 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 UserServiceAccountResponse */ export interface UserServiceAccountResponse { /** * * @type {string} * @memberof UserServiceAccountResponse */ username: string; /** * * @type {string} * @memberof UserServiceAccountResponse */ token: string; /** * * @type {string} * @memberof UserServiceAccountResponse */ userUid: string; /** * * @type {number} * @memberof UserServiceAccountResponse */ userPk: number; /** * * @type {string} * @memberof UserServiceAccountResponse */ groupPk?: string; } /** * Check if a given object implements the UserServiceAccountResponse interface. */ export declare function instanceOfUserServiceAccountResponse(value: object): value is UserServiceAccountResponse; export declare function UserServiceAccountResponseFromJSON(json: any): UserServiceAccountResponse; export declare function UserServiceAccountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserServiceAccountResponse; export declare function UserServiceAccountResponseToJSON(json: any): UserServiceAccountResponse; export declare function UserServiceAccountResponseToJSONTyped(value?: UserServiceAccountResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserServiceAccountResponse.d.ts.map