@oystehr/sdk
Version:
Oystehr SDK
14 lines (13 loc) • 339 B
TypeScript
import { AccessPolicy } from './AccessPolicy';
export interface RoleUpdateParams {
/**
* 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;
roleId: string;
}