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