UNPKG

ch-admin-api-client-typescript

Version:
50 lines 1.11 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 { AuditableEntityModel } from './auditable-entity-model'; /** * * @export * @interface CurrencyModel */ export interface CurrencyModel { /** * * @type {string} * @memberof CurrencyModel */ 'id'?: string; /** * * @type {string} * @memberof CurrencyModel */ 'currencyCode'?: string | null; /** * * @type {string} * @memberof CurrencyModel */ 'currencySymbol'?: string | null; /** * * @type {number} * @memberof CurrencyModel */ 'order'?: number; /** * * @type {AuditableEntityModel} * @memberof CurrencyModel */ 'auditableEntity'?: AuditableEntityModel; } //# sourceMappingURL=currency-model.d.ts.map