/**
 * 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';
import { Gender } from './gender';
/**
 *
 * @export
 * @interface DoctorItemModel
 */
export interface DoctorItemModel {
    /**
     *
     * @type {string}
     * @memberof DoctorItemModel
     */
    'id'?: string;
    /**
     *
     * @type {string}
     * @memberof DoctorItemModel
     */
    'userName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof DoctorItemModel
     */
    'firstName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof DoctorItemModel
     */
    'lastName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof DoctorItemModel
     */
    'fullname'?: string | null;
    /**
     *
     * @type {string}
     * @memberof DoctorItemModel
     */
    'phone'?: string | null;
    /**
     *
     * @type {string}
     * @memberof DoctorItemModel
     */
    'email'?: string | null;
    /**
     *
     * @type {string}
     * @memberof DoctorItemModel
     */
    'photo'?: string | null;
    /**
     *
     * @type {string}
     * @memberof DoctorItemModel
     */
    'photoThumbnail'?: string | null;
    /**
     *
     * @type {Gender}
     * @memberof DoctorItemModel
     */
    'gender'?: Gender;
    /**
     *
     * @type {Date}
     * @memberof DoctorItemModel
     */
    'dateOfBirth'?: Date | null;
    /**
     *
     * @type {string}
     * @memberof DoctorItemModel
     */
    'timeZone'?: string | null;
    /**
     *
     * @type {string}
     * @memberof DoctorItemModel
     */
    'communicationUserId'?: string | null;
    /**
     *
     * @type {AuditableEntityModel}
     * @memberof DoctorItemModel
     */
    'auditableEntity'?: AuditableEntityModel;
    /**
     *
     * @type {string}
     * @memberof DoctorItemModel
     */
    'license'?: string | null;
}
//# sourceMappingURL=doctor-item-model.d.ts.map