/**
 * 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 { AuditableEntity } from './auditable-entity';
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
     */
    '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 {AuditableEntity}
     * @memberof SpecialtyItemModel
     */
    'auditableEntity'?: AuditableEntity;
}
//# sourceMappingURL=specialty-item-model.d.ts.map