UNPKG

ch-admin-api-client-typescript

Version:
58 lines 1.45 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 { MediaModel } from './media-model'; import { PageBlockInputModel } from './page-block-input-model'; import { PageSectionListType } from './page-section-list-type'; /** * * @export * @interface PageSectionInputModel */ export interface PageSectionInputModel { /** * * @type {string} * @memberof PageSectionInputModel */ 'id'?: string | null; /** * * @type {PageSectionListType} * @memberof PageSectionInputModel */ 'listType'?: PageSectionListType; /** * * @type {string} * @memberof PageSectionInputModel */ 'customStyle'?: string | null; /** * * @type {number} * @memberof PageSectionInputModel */ 'order'?: number; /** * * @type {Array<PageBlockInputModel>} * @memberof PageSectionInputModel */ 'blocks'?: Array<PageBlockInputModel> | null; /** * * @type {Array<MediaModel>} * @memberof PageSectionInputModel */ 'medias'?: Array<MediaModel> | null; } //# sourceMappingURL=page-section-input-model.d.ts.map