/**
 * 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 { MediaModel } from './media-model';
/**
 *
 * @export
 * @interface UpdateSpecialtyCommand
 */
export interface UpdateSpecialtyCommand {
    /**
     *
     * @type {string}
     * @memberof UpdateSpecialtyCommand
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateSpecialtyCommand
     */
    'title'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateSpecialtyCommand
     */
    'description'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateSpecialtyCommand
     */
    'content'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateSpecialtyCommand
     */
    'markdown'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateSpecialtyCommand
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateSpecialtyCommand
     */
    'photo'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateSpecialtyCommand
     */
    'photoThumbnail'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateSpecialtyCommand
     */
    'background'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateSpecialtyCommand
     */
    'backgroundThumbnail'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateSpecialtyCommand
     */
    'customStyle'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdateSpecialtyCommand
     */
    'specialtyTypeId'?: string;
    /**
     *
     * @type {boolean}
     * @memberof UpdateSpecialtyCommand
     */
    'confirmed'?: boolean;
    /**
     *
     * @type {Array<MediaModel>}
     * @memberof UpdateSpecialtyCommand
     */
    'medias'?: Array<MediaModel> | null;
}
//# sourceMappingURL=update-specialty-command.d.ts.map