UNPKG

ch-admin-api-client-typescript

Version:
124 lines 3 kB
/** * 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 { AuditableEntityModel } from './auditable-entity-model'; import { ContributionType } from './contribution-type'; import { SnsHandleModel } from './sns-handle-model'; /** * * @export * @interface GeneralArticleContributorModel */ export interface GeneralArticleContributorModel { /** * * @type {string} * @memberof GeneralArticleContributorModel */ 'generalArticleId'?: string; /** * * @type {string} * @memberof GeneralArticleContributorModel */ 'contributorId'?: string; /** * * @type {string} * @memberof GeneralArticleContributorModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof GeneralArticleContributorModel */ 'contributorName'?: string | null; /** * * @type {string} * @memberof GeneralArticleContributorModel */ 'contributorSlug'?: string | null; /** * * @type {boolean} * @memberof GeneralArticleContributorModel */ 'contributorIsConfirmed'?: boolean; /** * * @type {string} * @memberof GeneralArticleContributorModel */ 'contributorEmail'?: string | null; /** * * @type {string} * @memberof GeneralArticleContributorModel */ 'contributorPhoto'?: string | null; /** * * @type {string} * @memberof GeneralArticleContributorModel */ 'contributorPhotoThumbnail'?: string | null; /** * * @type {ContributionType} * @memberof GeneralArticleContributorModel */ 'type'?: ContributionType; /** * * @type {string} * @memberof GeneralArticleContributorModel */ 'filter'?: string | null; /** * * @type {number} * @memberof GeneralArticleContributorModel */ 'order'?: number; /** * * @type {AuditableEntityModel} * @memberof GeneralArticleContributorModel */ 'auditableEntity'?: AuditableEntityModel; /** * * @type {string} * @memberof GeneralArticleContributorModel */ 'contributorDescription'?: string | null; /** * * @type {string} * @memberof GeneralArticleContributorModel */ 'contributorOverview'?: string | null; /** * * @type {string} * @memberof GeneralArticleContributorModel */ 'contributorContent'?: string | null; /** * * @type {Array<SnsHandleModel>} * @memberof GeneralArticleContributorModel */ 'contributorSnsHandles'?: Array<SnsHandleModel> | null; } //# sourceMappingURL=general-article-contributor-model.d.ts.map