UNPKG

ch-admin-api-client-typescript

Version:
54 lines 1.36 kB
/** * 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 { TranslationCharatersModel } from './translation-charaters-model'; /** * * @export * @interface TranslationBatchResultModel */ export interface TranslationBatchResultModel { /** * * @type {string} * @memberof TranslationBatchResultModel */ 'id'?: string; /** * * @type {number} * @memberof TranslationBatchResultModel */ 'effectedRows'?: number; /** * * @type {{ [key: string]: { [key: string]: TranslationCharatersModel; }; }} * @memberof TranslationBatchResultModel */ 'translatedCharacters'?: { [key: string]: { [key: string]: TranslationCharatersModel; }; } | null; /** * * @type {number} * @memberof TranslationBatchResultModel */ 'characters'?: number; /** * * @type {boolean} * @memberof TranslationBatchResultModel */ 'isSuccess'?: boolean; } //# sourceMappingURL=translation-batch-result-model.d.ts.map