UNPKG

@oystehr/sdk

Version:

Oystehr SDK

13 lines (12 loc) 318 B
import { AccessPolicy } from './AccessPolicy'; export interface RoleCreateParams { /** * 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; }