23 lines
550 B
TypeScript
23 lines
550 B
TypeScript
|
import { DeviceType } from '@ucap-webmessenger/core';
|
||
|
import { APIRequest, APIResponse } from '@ucap-webmessenger/api';
|
||
|
|
||
|
export interface TranslationSaveRequest extends APIRequest {
|
||
|
userSeq: string;
|
||
|
deviceType: DeviceType;
|
||
|
token: string;
|
||
|
roomId?: string;
|
||
|
original?: string;
|
||
|
srcLocale: string;
|
||
|
destLocale: string;
|
||
|
}
|
||
|
|
||
|
export interface TranslationSaveResponse extends APIResponse {
|
||
|
EventTransSeq?: string;
|
||
|
RoomID?: string;
|
||
|
RegDate?: string;
|
||
|
SrcLocale?: string;
|
||
|
DestLocale?: string;
|
||
|
Original?: string;
|
||
|
Translation?: string;
|
||
|
}
|