ch-admin-api-client-typescript
Version:
Openapi generated typescript-axios client for CloudHospital admin
56 lines • 1.24 kB
TypeScript
/**
* CloudHospital Admin Api
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
*
* The version of the OpenAPI document: 1
* Contact: developer@icloudhospital.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { AiChatModel } from './ai-chat-model';
/**
*
* @export
* @interface TranslateCommand
*/
export interface TranslateCommand {
/**
*
* @type {string}
* @memberof TranslateCommand
*/
'sourceLanguageCode'?: string | null;
/**
*
* @type {string}
* @memberof TranslateCommand
*/
'targetLanguageCode'?: string | null;
/**
*
* @type {string}
* @memberof TranslateCommand
*/
'content'?: string | null;
/**
*
* @type {boolean}
* @memberof TranslateCommand
*/
'isHtml'?: boolean;
/**
*
* @type {AiChatModel}
* @memberof TranslateCommand
*/
'aiChatModel'?: AiChatModel;
/**
*
* @type {string}
* @memberof TranslateCommand
*/
'customPersonaPrompt'?: string | null;
}
//# sourceMappingURL=translate-command.d.ts.map