UNPKG

wallee

Version:
41 lines (40 loc) 1.07 kB
import { CreationEntityState } from "./CreationEntityState"; import { UserType } from "./UserType"; declare class User { /** * A unique identifier for the object. */ 'id'?: 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. */ 'plannedPurgeDate'?: Date; /** * The scope that the user belongs to. */ 'scope'?: number; /** * The object's current state. */ 'state'?: CreationEntityState; /** * The user's type which defines its role and capabilities. */ 'userType'?: UserType; /** * The version is used for optimistic locking and incremented whenever the object is updated. */ 'version'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { User };