UNPKG

@novo-learning/novo-sdk

Version:

SDK for the Novolanguage Speech Analysis API

12 lines (10 loc) 312 B
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 }; }