@c8y/client
Version:
Client application programming interface to access the Cumulocity IoT-Platform REST services.
16 lines • 477 B
TypeScript
import { IRole } from './IRole';
/** Description of IRoleReferences interface */
export interface IRoleReferences {
/** List of role references */
references: IRoleReference[];
/** Link to this Resource */
self: string;
}
/** Description of IRoleReference interface */
export interface IRoleReference {
/** A role resource being referenced */
role: IRole;
/** Link to this Resource */
self: string;
}
//# sourceMappingURL=IRoleReference.d.ts.map