UNPKG

ch-admin-api-client-typescript

Version:
87 lines 1.91 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 UpdatePromotionCommand */ export interface UpdatePromotionCommand { /** * * @type {string} * @memberof UpdatePromotionCommand */ 'languageCode'?: string | null; /** * * @type {PromotionType} * @memberof UpdatePromotionCommand */ 'promotionType'?: PromotionType; /** * * @type {number} * @memberof UpdatePromotionCommand */ 'order'?: number; /** * * @type {Date} * @memberof UpdatePromotionCommand */ 'start'?: Date | null; /** * * @type {Date} * @memberof UpdatePromotionCommand */ 'end'?: Date | null; /** * * @type {boolean} * @memberof UpdatePromotionCommand */ 'isActivated'?: boolean; /** * * @type {string} * @memberof UpdatePromotionCommand */ 'targetUrl'?: string | null; /** * * @type {string} * @memberof UpdatePromotionCommand */ 'name'?: string | null; /** * * @type {string} * @memberof UpdatePromotionCommand */ 'buttonTitle'?: string | null; /** * * @type {boolean} * @memberof UpdatePromotionCommand */ 'isConfirmed'?: boolean; /** * * @type {Array<MediaModel>} * @memberof UpdatePromotionCommand */ 'medias'?: Array<MediaModel> | null; } //# sourceMappingURL=update-promotion-command.d.ts.map