cv-dialog-sdk
Version:
Catavolt Dialog Javascript API
13 lines (11 loc) • 373 B
text/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;
}