@oystehr/sdk
Version:
Oystehr SDK
13 lines (10 loc) • 336 B
text/typescript
// AUTOGENERATED -- DO NOT EDIT
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;
}