/**
 * 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 { AppointmentOptionModel } from './appointment-option-model';
import { DoctorPrefix } from './doctor-prefix';
import { FeatureInputModel } from './feature-input-model';
import { MediaModel } from './media-model';
/**
 *
 * @export
 * @interface CreateDoctorAffiliationCommand
 */
export interface CreateDoctorAffiliationCommand {
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'doctorId'?: string;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'hospitalId'?: string;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'title'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'description'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'overview'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'content'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'markdown'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'customStyle'?: string | null;
    /**
     *
     * @type {number}
     * @memberof CreateDoctorAffiliationCommand
     */
    'order'?: number;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'photo'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'photoThumbnail'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'background'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'backgroundThumbnail'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'signature'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof CreateDoctorAffiliationCommand
     */
    'consultationEnabled'?: boolean | null;
    /**
     *
     * @type {number}
     * @memberof CreateDoctorAffiliationCommand
     */
    'consultationFee'?: number | null;
    /**
     *
     * @type {FeatureInputModel}
     * @memberof CreateDoctorAffiliationCommand
     */
    'feature'?: FeatureInputModel;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'jobTitle'?: string | null;
    /**
     *
     * @type {string}
     * @memberof CreateDoctorAffiliationCommand
     */
    'jobPosition'?: string | null;
    /**
     *
     * @type {DoctorPrefix}
     * @memberof CreateDoctorAffiliationCommand
     */
    'prefix'?: DoctorPrefix;
    /**
     *
     * @type {Array<MediaModel>}
     * @memberof CreateDoctorAffiliationCommand
     */
    'medias'?: Array<MediaModel> | null;
    /**
     *
     * @type {AppointmentOptionModel}
     * @memberof CreateDoctorAffiliationCommand
     */
    'appointmentOption'?: AppointmentOptionModel;
}
//# sourceMappingURL=create-doctor-affiliation-command.d.ts.map