import { RightEnum } from './right/RightEnum';
import { UserObjectRightTypeEnum } from './right/UserObjectRightTypeEnum';
/** User object right */
export interface ObjectRight {
    /** Name of the object */
    name: string;
    /**  */
    objectRightId: number;
    /** Right propagation on children objects */
    propagate: boolean;
    /** User access on the VMware object */
    right: RightEnum;
    /** Type of the object */
    type: UserObjectRightTypeEnum;
    /** The VMware MoRef of the object */
    vmwareObjectId: string;
}
//# sourceMappingURL=ObjectRight.d.ts.map