import type { CreationEntityState } from './CreationEntityState'; import type { UserType } from './UserType'; /** * * @export * @interface ApplicationUser */ export interface ApplicationUser { /** * The scope that the user belongs to. * @type {number} * @memberof ApplicationUser */ readonly scope?: number; /** * The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed. * @type {Date} * @memberof ApplicationUser */ readonly plannedPurgeDate?: Date; /** * A unique identifier for the object. * @type {number} * @memberof ApplicationUser */ readonly id?: number; /** * * @type {CreationEntityState} * @memberof ApplicationUser */ state?: CreationEntityState; /** * * @type {UserType} * @memberof ApplicationUser */ userType?: UserType; /** * The version is used for optimistic locking and incremented whenever the object is updated. * @type {number} * @memberof ApplicationUser */ readonly version?: number; /** * The maximum number of API requests that are accepted every 2 minutes. * @type {number} * @memberof ApplicationUser */ readonly requestLimit?: number; /** * The name used to identify the application user. * @type {string} * @memberof ApplicationUser */ readonly name?: string; /** * The primary account that the user belongs to. * @type {number} * @memberof ApplicationUser */ readonly primaryAccount?: number; } /** * Check if a given object implements the ApplicationUser interface. */ export declare function instanceOfApplicationUser(value: object): value is ApplicationUser; export declare function ApplicationUserFromJSON(json: any): ApplicationUser; export declare function ApplicationUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationUser; export declare function ApplicationUserToJSON(json: any): ApplicationUser; export declare function ApplicationUserToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;