@novo-learning/novo-sdk
Version:
SDK for the Novolanguage Speech Analysis API
12 lines (10 loc) • 312 B
text/typescript
import { PermissionType } from './permission-type';
import { RetentionType } from './retention-type';
export class UserData {
userId: string;
publisherId: string;
groupId?: string;
permissions?: PermissionType[];
retention?: RetentionType;
metadata?: { [key: string]: string | number | boolean };
}