UNPKG

ch-admin-api-client-typescript

Version:
74 lines 1.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 { FrequentlyAskedQuestionStatus } from './frequently-asked-question-status'; /** * * @export * @interface UpdateFrequentlyAskedQuestionCommand */ export interface UpdateFrequentlyAskedQuestionCommand { /** * * @type {string} * @memberof UpdateFrequentlyAskedQuestionCommand */ 'languageCode'?: string | null; /** * * @type {FrequentlyAskedQuestionStatus} * @memberof UpdateFrequentlyAskedQuestionCommand */ 'status'?: FrequentlyAskedQuestionStatus; /** * * @type {number} * @memberof UpdateFrequentlyAskedQuestionCommand */ 'order'?: number; /** * * @type {string} * @memberof UpdateFrequentlyAskedQuestionCommand */ 'name'?: string | null; /** * * @type {string} * @memberof UpdateFrequentlyAskedQuestionCommand */ 'content'?: string | null; /** * * @type {string} * @memberof UpdateFrequentlyAskedQuestionCommand */ 'overview'?: string | null; /** * * @type {string} * @memberof UpdateFrequentlyAskedQuestionCommand */ 'description'?: string | null; /** * * @type {string} * @memberof UpdateFrequentlyAskedQuestionCommand */ 'markdown'?: string | null; /** * * @type {boolean} * @memberof UpdateFrequentlyAskedQuestionCommand */ 'isConfirmed'?: boolean; } //# sourceMappingURL=update-frequently-asked-question-command.d.ts.map