ch-admin-api-client-typescript
Version:
Openapi generated typescript-axios client for CloudHospital admin
100 lines • 2.12 kB
TypeScript
/**
* 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 { AuditableEntityModel } from './auditable-entity-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 {PageItemStatus}
* @memberof PageItemModel
*/
'status'?: PageItemStatus;
/**
*
* @type {string}
* @memberof PageItemModel
*/
'name'?: string | null;
/**
*
* @type {string}
* @memberof PageItemModel
*/
'slug'?: string | null;
/**
*
* @type {boolean}
* @memberof PageItemModel
*/
'isConfirmed'?: boolean;
/**
*
* @type {AuditableEntityModel}
* @memberof PageItemModel
*/
'auditableEntity'?: AuditableEntityModel;
/**
*
* @type {string}
* @memberof PageItemModel
*/
'customStyle'?: string | null;
/**
*
* @type {Array<PageSectionModel>}
* @memberof PageItemModel
*/
'sections'?: Array<PageSectionModel> | null;
/**
*
* @type {string}
* @memberof PageItemModel
*/
'description'?: string | null;
/**
*
* @type {string}
* @memberof PageItemModel
*/
'overview'?: string | null;
/**
*
* @type {string}
* @memberof PageItemModel
*/
'content'?: string | null;
}
//# sourceMappingURL=page-item-model.d.ts.map