/**
 * 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 { LocalizedUrlMetadataModel } from './localized-url-metadata-model';
import { LocalizedUrlModel } from './localized-url-model';
import { SnsHandleModel } from './sns-handle-model';
/**
 *
 * @export
 * @interface ContributorModel
 */
export interface ContributorModel {
    /**
     *
     * @type {string}
     * @memberof ContributorModel
     */
    'id'?: string;
    /**
     *
     * @type {string}
     * @memberof ContributorModel
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ContributorModel
     */
    'name'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ContributorModel
     */
    'slug'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof ContributorModel
     */
    'confirmed'?: boolean;
    /**
     *
     * @type {string}
     * @memberof ContributorModel
     */
    'description'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ContributorModel
     */
    'jobTitle'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ContributorModel
     */
    'hospitalId'?: string;
    /**
     *
     * @type {string}
     * @memberof ContributorModel
     */
    'hospitalName'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ContributorModel
     */
    'hospitalSlug'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ContributorModel
     */
    'hospitalWebsiteUrl'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ContributorModel
     */
    'email'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ContributorModel
     */
    'photo'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ContributorModel
     */
    'photoThumbnail'?: string | null;
    /**
     *
     * @type {number}
     * @memberof ContributorModel
     */
    'order'?: number;
    /**
     *
     * @type {AuditableEntity}
     * @memberof ContributorModel
     */
    'auditableEntity'?: AuditableEntity;
    /**
     *
     * @type {string}
     * @memberof ContributorModel
     */
    'overview'?: string | null;
    /**
     *
     * @type {string}
     * @memberof ContributorModel
     */
    'content'?: string | null;
    /**
     *
     * @type {Array<SnsHandleModel>}
     * @memberof ContributorModel
     */
    'snsHandles'?: Array<SnsHandleModel> | null;
    /**
     *
     * @type {Array<LocalizedUrlModel>}
     * @memberof ContributorModel
     */
    'localizedUrls'?: Array<LocalizedUrlModel> | null;
    /**
     *
     * @type {Array<LocalizedUrlMetadataModel>}
     * @memberof ContributorModel
     */
    'localizedMetadatas'?: Array<LocalizedUrlMetadataModel> | null;
}
//# sourceMappingURL=contributor-model.d.ts.map