UNPKG

ch-api-client-typescript2

Version:
118 lines 2.53 kB
/** * CloudHospital Api * CloudHospital application with Swagger, Swashbuckle, and API versioning. * * The version of the OpenAPI document: 2 * 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'; import { MarketingType } from './marketing-type'; import { MediaModel } from './media-model'; /** * * @export * @interface SpecialtyItemModel */ export interface SpecialtyItemModel { /** * * @type {string} * @memberof SpecialtyItemModel */ 'id'?: string; /** * * @type {string} * @memberof SpecialtyItemModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof SpecialtyItemModel */ 'name'?: string | null; /** * * @type {string} * @memberof SpecialtyItemModel */ 'slug'?: string | null; /** * * @type {string} * @memberof SpecialtyItemModel */ 'title'?: string | null; /** * * @type {string} * @memberof SpecialtyItemModel */ 'description'?: string | null; /** * * @type {boolean} * @memberof SpecialtyItemModel */ 'confirmed'?: boolean; /** * * @type {string} * @memberof SpecialtyItemModel */ 'photo'?: string | null; /** * * @type {string} * @memberof SpecialtyItemModel */ 'photoThumbnail'?: string | null; /** * * @type {string} * @memberof SpecialtyItemModel */ 'background'?: string | null; /** * * @type {string} * @memberof SpecialtyItemModel */ 'backgroundThumbnail'?: string | null; /** * * @type {string} * @memberof SpecialtyItemModel */ 'specialtyTypeId'?: string; /** * * @type {string} * @memberof SpecialtyItemModel */ 'specialtyTypeName'?: string | null; /** * * @type {MarketingType} * @memberof SpecialtyItemModel */ 'marketingType'?: MarketingType; /** * * @type {Array<MediaModel>} * @memberof SpecialtyItemModel */ 'medias'?: Array<MediaModel> | null; /** * * @type {AuditableEntityModel} * @memberof SpecialtyItemModel */ 'auditableEntity'?: AuditableEntityModel; } //# sourceMappingURL=specialty-item-model.d.ts.map