UNPKG

ch-admin-api-client-typescript

Version:
99 lines 2 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 { MediaModel } from './media-model'; import { PromotionType } from './promotion-type'; /** * * @export * @interface PromotionModel */ export interface PromotionModel { /** * * @type {string} * @memberof PromotionModel */ 'id'?: string; /** * * @type {string} * @memberof PromotionModel */ 'hospitalId'?: string; /** * * @type {string} * @memberof PromotionModel */ 'hospitalName'?: string | null; /** * * @type {PromotionType} * @memberof PromotionModel */ 'promotionType'?: PromotionType; /** * * @type {number} * @memberof PromotionModel */ 'order'?: number; /** * * @type {Date} * @memberof PromotionModel */ 'start'?: Date | null; /** * * @type {Date} * @memberof PromotionModel */ 'end'?: Date | null; /** * * @type {boolean} * @memberof PromotionModel */ 'isActivated'?: boolean; /** * * @type {string} * @memberof PromotionModel */ 'targetUrl'?: string | null; /** * * @type {string} * @memberof PromotionModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof PromotionModel */ 'name'?: string | null; /** * * @type {string} * @memberof PromotionModel */ 'buttonTitle'?: string | null; /** * * @type {Array<MediaModel>} * @memberof PromotionModel */ 'medias'?: Array<MediaModel> | null; } //# sourceMappingURL=promotion-model.d.ts.map