UNPKG

wallee

Version:
35 lines (34 loc) 799 B
declare class UserSpaceRole { /** * A unique identifier for the object. */ 'id'?: number; /** * The role that is assigned to the user. */ 'role'?: number; /** * The space in which the role is assigned to the user. */ 'space'?: number; /** * The user whose role this defines. */ 'user'?: number; /** * 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 { UserSpaceRole };