UNPKG

ch-admin-api-client-typescript

Version:
81 lines 1.79 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 { PageItemStatus } from './page-item-status'; import { PageSectionInputModel } from './page-section-input-model'; /** * * @export * @interface UpdatePageCommand */ export interface UpdatePageCommand { /** * * @type {string} * @memberof UpdatePageCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof UpdatePageCommand */ 'name'?: string | null; /** * * @type {string} * @memberof UpdatePageCommand */ 'slug'?: string | null; /** * * @type {string} * @memberof UpdatePageCommand */ 'description'?: string | null; /** * * @type {string} * @memberof UpdatePageCommand */ 'overview'?: string | null; /** * * @type {string} * @memberof UpdatePageCommand */ 'content'?: string | null; /** * * @type {boolean} * @memberof UpdatePageCommand */ 'isConfirmed'?: boolean; /** * * @type {string} * @memberof UpdatePageCommand */ 'customStyle'?: string | null; /** * * @type {PageItemStatus} * @memberof UpdatePageCommand */ 'status'?: PageItemStatus; /** * * @type {Array<PageSectionInputModel>} * @memberof UpdatePageCommand */ 'sections'?: Array<PageSectionInputModel> | null; } //# sourceMappingURL=update-page-command.d.ts.map