UNPKG

ch-admin-api-client-typescript

Version:
148 lines 2.85 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 FaqModel */ export interface FaqModel { /** * * @type {string} * @memberof FaqModel */ 'id'?: string; /** * * @type {string} * @memberof FaqModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof FaqModel */ 'name'?: string | null; /** * * @type {string} * @memberof FaqModel */ 'slug'?: string | null; /** * * @type {boolean} * @memberof FaqModel */ 'confirmed'?: boolean; /** * * @type {string} * @memberof FaqModel */ 'parentId'?: string | null; /** * * @type {number} * @memberof FaqModel */ 'order'?: number; /** * * @type {string} * @memberof FaqModel */ 'hospitalId'?: string; /** * * @type {string} * @memberof FaqModel */ 'hospitalName'?: string | null; /** * * @type {string} * @memberof FaqModel */ 'hospitalSlug'?: string | null; /** * * @type {string} * @memberof FaqModel */ 'hospitalWebsiteUrl'?: string | null; /** * * @type {string} * @memberof FaqModel */ 'faqCategoryId'?: string; /** * * @type {string} * @memberof FaqModel */ 'faqCategoryName'?: string | null; /** * * @type {Array<FaqTagItemModel>} * @memberof FaqModel */ 'faqTags'?: Array<FaqTagItemModel> | null; /** * * @type {Array<MediaModel>} * @memberof FaqModel */ 'medias'?: Array<MediaModel> | null; /** * * @type {AuditableEntity} * @memberof FaqModel */ 'auditableEntity'?: AuditableEntity; /** * * @type {string} * @memberof FaqModel */ 'description'?: string | null; /** * * @type {string} * @memberof FaqModel */ 'overview'?: string | null; /** * * @type {string} * @memberof FaqModel */ 'content'?: string | null; /** * * @type {string} * @memberof FaqModel */ 'markdown'?: string | null; /** * * @type {string} * @memberof FaqModel */ 'customStyle'?: string | null; } //# sourceMappingURL=faq-model.d.ts.map