UNPKG

wallee

Version:
39 lines (38 loc) 927 B
declare class UserAccountRole { /** * The account in which the role is assigned to the user. */ 'account'?: number; /** * Whether the role is assigned to the user in subaccounts only. */ 'appliesOnSubAccount'?: boolean; /** * A unique identifier for the object. */ 'id'?: number; /** * The role that is assigned to the user. */ 'role'?: 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 { UserAccountRole };