UNPKG

ch-admin-api-client-typescript

Version:
110 lines 2.22 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'; /** * * @export * @interface FaqCategoryModel */ export interface FaqCategoryModel { /** * * @type {string} * @memberof FaqCategoryModel */ 'id'?: string; /** * * @type {string} * @memberof FaqCategoryModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof FaqCategoryModel */ 'name'?: string | null; /** * * @type {string} * @memberof FaqCategoryModel */ 'slug'?: string | null; /** * * @type {boolean} * @memberof FaqCategoryModel */ 'confirmed'?: boolean; /** * * @type {string} * @memberof FaqCategoryModel */ 'parentId'?: string | null; /** * * @type {number} * @memberof FaqCategoryModel */ 'order'?: number; /** * * @type {string} * @memberof FaqCategoryModel */ 'hospitalId'?: string; /** * * @type {string} * @memberof FaqCategoryModel */ 'hospitalName'?: string | null; /** * * @type {string} * @memberof FaqCategoryModel */ 'hospitalSlug'?: string | null; /** * * @type {string} * @memberof FaqCategoryModel */ 'hospitalWebsiteUrl'?: string | null; /** * * @type {AuditableEntity} * @memberof FaqCategoryModel */ 'auditableEntity'?: AuditableEntity; /** * * @type {string} * @memberof FaqCategoryModel */ 'description'?: string | null; /** * * @type {string} * @memberof FaqCategoryModel */ 'overview'?: string | null; /** * * @type {string} * @memberof FaqCategoryModel */ 'content'?: string | null; } //# sourceMappingURL=faq-category-model.d.ts.map