UNPKG

ch-admin-api-client-typescript

Version:
69 lines 1.53 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 { FaqTagItemModel } from './faq-tag-item-model'; import { MediaModel } from './media-model'; /** * * @export * @interface CreateFaqCommand */ export interface CreateFaqCommand { /** * * @type {string} * @memberof CreateFaqCommand */ 'name'?: string | null; /** * * @type {string} * @memberof CreateFaqCommand */ 'content'?: string | null; /** * * @type {string} * @memberof CreateFaqCommand */ 'description'?: string | null; /** * * @type {number} * @memberof CreateFaqCommand */ 'order'?: number; /** * * @type {string} * @memberof CreateFaqCommand */ 'customStyle'?: string | null; /** * * @type {string} * @memberof CreateFaqCommand */ 'faqCategoryId'?: string; /** * * @type {Array<FaqTagItemModel>} * @memberof CreateFaqCommand */ 'faqTags'?: Array<FaqTagItemModel> | null; /** * * @type {Array<MediaModel>} * @memberof CreateFaqCommand */ 'medias'?: Array<MediaModel> | null; } //# sourceMappingURL=create-faq-command.d.ts.map