@oystehr/sdk
Version:
Oystehr SDK
20 lines (17 loc) • 378 B
text/typescript
// AUTOGENERATED -- DO NOT EDIT
import { AccessPolicy } from './AccessPolicy';
export interface Role {
/**
* The unique id of the role
*/
id: string;
/**
* The name of the role.
*/
name: string;
/**
* A description of the Role to help you differentiate it from other Roles in the project.
*/
description?: string;
accessPolicy: AccessPolicy;
}