UNPKG

ch-admin-api-client-typescript

Version:
99 lines 2.32 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'; /** * * @export * @interface ArticleContributorItemModel */ export interface ArticleContributorItemModel { /** * * @type {string} * @memberof ArticleContributorItemModel */ 'articleId'?: string; /** * * @type {string} * @memberof ArticleContributorItemModel */ 'contributorId'?: string; /** * * @type {string} * @memberof ArticleContributorItemModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof ArticleContributorItemModel */ 'contributorName'?: string | null; /** * * @type {string} * @memberof ArticleContributorItemModel */ 'contributorSlug'?: string | null; /** * * @type {boolean} * @memberof ArticleContributorItemModel */ 'contributorConfirmed'?: boolean; /** * * @type {string} * @memberof ArticleContributorItemModel */ 'contributorEmail'?: string | null; /** * * @type {string} * @memberof ArticleContributorItemModel */ 'contributorPhoto'?: string | null; /** * * @type {string} * @memberof ArticleContributorItemModel */ 'contributorPhotoThumbnail'?: string | null; /** * * @type {ContributionType} * @memberof ArticleContributorItemModel */ 'type'?: ContributionType; /** * * @type {string} * @memberof ArticleContributorItemModel */ 'filter'?: string | null; /** * * @type {number} * @memberof ArticleContributorItemModel */ 'order'?: number; /** * * @type {AuditableEntityModel} * @memberof ArticleContributorItemModel */ 'auditableEntity'?: AuditableEntityModel; } //# sourceMappingURL=article-contributor-item-model.d.ts.map