UNPKG

ch-admin-api-client-typescript

Version:
112 lines 2.94 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 { FrequentlyAskedQuestionCategories } from './frequently-asked-question-categories'; import { FrequentlyAskedQuestionStatus } from './frequently-asked-question-status'; import { FrequentlyAskedQuestionSubcategories } from './frequently-asked-question-subcategories'; /** * * @export * @interface CreateFrequentlyAskedQuestionCommand */ export interface CreateFrequentlyAskedQuestionCommand { /** * * @type {string} * @memberof CreateFrequentlyAskedQuestionCommand */ 'languageCode'?: string | null; /** * * @type {FrequentlyAskedQuestionCategories} * @memberof CreateFrequentlyAskedQuestionCommand */ 'category'?: FrequentlyAskedQuestionCategories; /** * * @type {FrequentlyAskedQuestionSubcategories} * @memberof CreateFrequentlyAskedQuestionCommand */ 'subcategory'?: FrequentlyAskedQuestionSubcategories; /** * * @type {FrequentlyAskedQuestionStatus} * @memberof CreateFrequentlyAskedQuestionCommand */ 'status'?: FrequentlyAskedQuestionStatus; /** * * @type {number} * @memberof CreateFrequentlyAskedQuestionCommand */ 'order'?: number; /** * * @type {string} * @memberof CreateFrequentlyAskedQuestionCommand */ 'hospitalId'?: string | null; /** * * @type {string} * @memberof CreateFrequentlyAskedQuestionCommand */ 'doctorAffiliationId'?: string | null; /** * * @type {string} * @memberof CreateFrequentlyAskedQuestionCommand */ 'dealId'?: string | null; /** * * @type {string} * @memberof CreateFrequentlyAskedQuestionCommand */ 'articleId'?: string | null; /** * * @type {string} * @memberof CreateFrequentlyAskedQuestionCommand */ 'name'?: string | null; /** * * @type {string} * @memberof CreateFrequentlyAskedQuestionCommand */ 'content'?: string | null; /** * * @type {string} * @memberof CreateFrequentlyAskedQuestionCommand */ 'overview'?: string | null; /** * * @type {string} * @memberof CreateFrequentlyAskedQuestionCommand */ 'description'?: string | null; /** * * @type {string} * @memberof CreateFrequentlyAskedQuestionCommand */ 'markdown'?: string | null; /** * * @type {boolean} * @memberof CreateFrequentlyAskedQuestionCommand */ 'isConfirmed'?: boolean; } //# sourceMappingURL=create-frequently-asked-question-command.d.ts.map