/** Description of IRole interface */
export interface IRole {
    /** Uniquely identifies a Role */
    id?: string;
    /** Descriptive Name of the Role */
    name?: string;
    /** Link to this Resource - optional property */
    self?: string;
}
//# sourceMappingURL=IRole.d.ts.map