/**
 * 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 { ArticleStatus } from './article-status';
import { ArticleType } from './article-type';
import { AuditableEntityModel } from './auditable-entity-model';
import { GeneralArticleTagItemModel } from './general-article-tag-item-model';
import { MediaModel } from './media-model';
/**
 *
 * @export
 * @interface GeneralArticleItemModel
 */
export interface GeneralArticleItemModel {
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'id'?: string;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'title'?: string | null;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'slug'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof GeneralArticleItemModel
     */
    'confirmed'?: boolean;
    /**
     *
     * @type {number}
     * @memberof GeneralArticleItemModel
     */
    'readTime'?: number | null;
    /**
     *
     * @type {ArticleType}
     * @memberof GeneralArticleItemModel
     */
    'articleType'?: ArticleType;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'userId'?: string | null;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'userName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'hospitalId'?: string;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'hospitalName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'hospitalSlug'?: string | null;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'youtubeUrl'?: string | null;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'photo'?: string | null;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'photoThumbnail'?: string | null;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'background'?: string | null;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'backgroundThumbnail'?: string | null;
    /**
     *
     * @type {ArticleStatus}
     * @memberof GeneralArticleItemModel
     */
    'status'?: ArticleStatus;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'articleCategoryId'?: string | null;
    /**
     *
     * @type {string}
     * @memberof GeneralArticleItemModel
     */
    'articleCategoryName'?: string | null;
    /**
     *
     * @type {Array<GeneralArticleTagItemModel>}
     * @memberof GeneralArticleItemModel
     */
    'articleTags'?: Array<GeneralArticleTagItemModel> | null;
    /**
     *
     * @type {Array<MediaModel>}
     * @memberof GeneralArticleItemModel
     */
    'medias'?: Array<MediaModel> | null;
    /**
     *
     * @type {AuditableEntityModel}
     * @memberof GeneralArticleItemModel
     */
    'auditableEntity'?: AuditableEntityModel;
}
//# sourceMappingURL=general-article-item-model.d.ts.map