/**
 * 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 { AuditableEntityModel } from './auditable-entity-model';
import { ContributionType } from './contribution-type';
import { LocalizedUrlMetadataModel } from './localized-url-metadata-model';
import { LocalizedUrlModel } from './localized-url-model';
import { SnsHandleModel } from './sns-handle-model';
/**
 *
 * @export
 * @interface ArticleContributorModel
 */
export interface ArticleContributorModel {
    /**
     *
     * @type {string}
     * @memberof ArticleContributorModel
     */
    'articleId'?: string;
    /**
     *
     * @type {string}
     * @memberof ArticleContributorModel
     */
    'contributorId'?: string;
    /**
     *
     * @type {string}
     * @memberof ArticleContributorModel
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ArticleContributorModel
     */
    'contributorName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ArticleContributorModel
     */
    'contributorSlug'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof ArticleContributorModel
     */
    'contributorConfirmed'?: boolean;
    /**
     *
     * @type {string}
     * @memberof ArticleContributorModel
     */
    'contributorEmail'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ArticleContributorModel
     */
    'contributorPhoto'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ArticleContributorModel
     */
    'contributorPhotoThumbnail'?: string | null;
    /**
     *
     * @type {ContributionType}
     * @memberof ArticleContributorModel
     */
    'type'?: ContributionType;
    /**
     *
     * @type {string}
     * @memberof ArticleContributorModel
     */
    'filter'?: string | null;
    /**
     *
     * @type {number}
     * @memberof ArticleContributorModel
     */
    'order'?: number;
    /**
     *
     * @type {AuditableEntityModel}
     * @memberof ArticleContributorModel
     */
    'auditableEntity'?: AuditableEntityModel;
    /**
     *
     * @type {string}
     * @memberof ArticleContributorModel
     */
    'contributorDescription'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ArticleContributorModel
     */
    'contributorOverview'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ArticleContributorModel
     */
    'contributorContent'?: string | null;
    /**
     *
     * @type {Array<SnsHandleModel>}
     * @memberof ArticleContributorModel
     */
    'contributorSnsHandles'?: Array<SnsHandleModel> | null;
    /**
     *
     * @type {Array<LocalizedUrlModel>}
     * @memberof ArticleContributorModel
     */
    'localizedUrls'?: Array<LocalizedUrlModel> | null;
    /**
     *
     * @type {Array<LocalizedUrlMetadataModel>}
     * @memberof ArticleContributorModel
     */
    'localizedMetadatas'?: Array<LocalizedUrlMetadataModel> | null;
}
//# sourceMappingURL=article-contributor-model.d.ts.map