cv-dialog-sdk
Version:
Catavolt Dialog Javascript API
12 lines (11 loc) • 372 B
TypeScript
import { StringDictionary } from '../util/StringDictionary';
import { ClientType } from './types';
export interface Login {
readonly userId?: string;
readonly password?: string;
readonly permissionToken?: string;
readonly proofKey?: string;
readonly clientType: ClientType;
readonly deviceProperties: StringDictionary;
readonly type: string;
}