2019-09-18 15:02:21 +09:00

19 lines
463 B
TypeScript

import { DeviceType } from '@ucap-webmessenger/core';
import { APIRequest, APIResponse } from '@ucap-webmessenger/api';
export interface TranslationReqRequest extends APIRequest {
userSeq: string;
deviceType: DeviceType;
token: string;
original: string;
srcLocale: string;
destLocale: string;
}
export interface TranslationReqResponse extends APIResponse {
SrcLocale?: string;
DestLocale?: string;
Original?: string;
Translation?: string;
}