UNPKG

@oystehr/sdk

Version:

Oystehr SDK

10 lines (9 loc) 314 B
import { AccessPolicy } from './AccessPolicy'; export interface UserUpdateParams { accessPolicy?: AccessPolicy; /** * A list of Role IDs to assign to the user. If the accessPolicy property is not provided this property is required and may not be empty. */ roles?: string[]; id: string; }