import { IIdentified } from '../core';
/** Description of IUserInventoryRole interface */
export interface IUserInventoryRole {
    /** UUniquely identifies a user inventory role */
    id?: number;
    /**  */
    managedObject: string;
    /** List of role references */
    roles: IIdentified[];
    /** Link to this Resource */
    self?: string;
}
//# sourceMappingURL=IUserInventoryRole.d.ts.map