UNPKG

ch-api-client-typescript2

Version:
130 lines 3.18 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 { DoctorPrefix } from './doctor-prefix'; import { DoctorSpecialtyItemModel } from './doctor-specialty-item-model'; import { FeatureModel } from './feature-model'; /** * * @export * @interface UserFavoriteDoctorAffiliationItemModel */ export interface UserFavoriteDoctorAffiliationItemModel { /** * * @type {string} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'id'?: string; /** * * @type {string} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'languageCode'?: string | null; /** * * @type {DoctorPrefix} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'prefix'?: DoctorPrefix; /** * * @type {string} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'photo'?: string | null; /** * * @type {string} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'photoThumbnail'?: string | null; /** * * @type {number} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'order'?: number; /** * * @type {string} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'name'?: string | null; /** * * @type {string} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'title'?: string | null; /** * * @type {string} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'slug'?: string | null; /** * * @type {string} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'jobTitle'?: string | null; /** * * @type {string} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'jobPosition'?: string | null; /** * * @type {boolean} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'confirmed'?: boolean; /** * * @type {string} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'hospitalId'?: string; /** * * @type {string} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'hospitalName'?: string | null; /** * * @type {string} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'hospitalSlug'?: string | null; /** * * @type {Array<DoctorSpecialtyItemModel>} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'specialties'?: Array<DoctorSpecialtyItemModel> | null; /** * * @type {string} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'specialtiesSummarized'?: string | null; /** * * @type {FeatureModel} * @memberof UserFavoriteDoctorAffiliationItemModel */ 'feature'?: FeatureModel; } //# sourceMappingURL=user-favorite-doctor-affiliation-item-model.d.ts.map