UNPKG

ch-api-client-typescript2

Version:
107 lines 2.37 kB
/** * CloudHospital Api * CloudHospital application with Swagger, Swashbuckle, and API versioning. * * The version of the OpenAPI document: 2 * 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 { LocalizedUrlMetadataModel } from './localized-url-metadata-model'; import { LocalizedUrlModel } from './localized-url-model'; import { PageItemStatus } from './page-item-status'; import { PageSectionModel } from './page-section-model'; /** * * @export * @interface PageItemModel */ export interface PageItemModel { /** * * @type {string} * @memberof PageItemModel */ 'id'?: string; /** * * @type {string} * @memberof PageItemModel */ 'hospitalId'?: string; /** * * @type {string} * @memberof PageItemModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof PageItemModel */ 'customStyle'?: string | null; /** * * @type {PageItemStatus} * @memberof PageItemModel */ 'status'?: PageItemStatus; /** * * @type {Array<PageSectionModel>} * @memberof PageItemModel */ 'sections'?: Array<PageSectionModel> | null; /** * * @type {string} * @memberof PageItemModel */ 'name'?: string | null; /** * * @type {string} * @memberof PageItemModel */ 'slug'?: string | null; /** * * @type {string} * @memberof PageItemModel */ 'description'?: string | null; /** * * @type {string} * @memberof PageItemModel */ 'overview'?: string | null; /** * * @type {string} * @memberof PageItemModel */ 'content'?: string | null; /** * * @type {boolean} * @memberof PageItemModel */ 'isConfirmed'?: boolean; /** * * @type {Array<LocalizedUrlModel>} * @memberof PageItemModel */ 'localizedUrls'?: Array<LocalizedUrlModel> | null; /** * * @type {Array<LocalizedUrlMetadataModel>} * @memberof PageItemModel */ 'localizedMetadatas'?: Array<LocalizedUrlMetadataModel> | null; } //# sourceMappingURL=page-item-model.d.ts.map