UNPKG

ch-admin-api-client-typescript

Version:
118 lines 2.41 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 { AuditableEntity } from './auditable-entity'; import { FaqTagItemModel } from './faq-tag-item-model'; import { MediaModel } from './media-model'; /** * * @export * @interface FaqItemModel */ export interface FaqItemModel { /** * * @type {string} * @memberof FaqItemModel */ 'id'?: string; /** * * @type {string} * @memberof FaqItemModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof FaqItemModel */ 'name'?: string | null; /** * * @type {string} * @memberof FaqItemModel */ 'slug'?: string | null; /** * * @type {boolean} * @memberof FaqItemModel */ 'confirmed'?: boolean; /** * * @type {string} * @memberof FaqItemModel */ 'parentId'?: string | null; /** * * @type {number} * @memberof FaqItemModel */ 'order'?: number; /** * * @type {string} * @memberof FaqItemModel */ 'hospitalId'?: string; /** * * @type {string} * @memberof FaqItemModel */ 'hospitalName'?: string | null; /** * * @type {string} * @memberof FaqItemModel */ 'hospitalSlug'?: string | null; /** * * @type {string} * @memberof FaqItemModel */ 'hospitalWebsiteUrl'?: string | null; /** * * @type {string} * @memberof FaqItemModel */ 'faqCategoryId'?: string; /** * * @type {string} * @memberof FaqItemModel */ 'faqCategoryName'?: string | null; /** * * @type {Array<FaqTagItemModel>} * @memberof FaqItemModel */ 'faqTags'?: Array<FaqTagItemModel> | null; /** * * @type {Array<MediaModel>} * @memberof FaqItemModel */ 'medias'?: Array<MediaModel> | null; /** * * @type {AuditableEntity} * @memberof FaqItemModel */ 'auditableEntity'?: AuditableEntity; } //# sourceMappingURL=faq-item-model.d.ts.map