ch-admin-api-client-typescript
Version:
Openapi generated typescript-axios client for CloudHospital admin
131 lines • 2.77 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 { MediaModel } from './media-model';
import { PageBlockLinkModel } from './page-block-link-model';
import { PageBlockLocationModel } from './page-block-location-model';
import { PageBlockType } from './page-block-type';
/**
*
* @export
* @interface PageBlockModel
*/
export interface PageBlockModel {
/**
*
* @type {string}
* @memberof PageBlockModel
*/
'id'?: string;
/**
*
* @type {string}
* @memberof PageBlockModel
*/
'languageCode'?: string | null;
/**
*
* @type {PageBlockType}
* @memberof PageBlockModel
*/
'blockType'?: PageBlockType;
/**
*
* @type {string}
* @memberof PageBlockModel
*/
'icon'?: string | null;
/**
*
* @type {string}
* @memberof PageBlockModel
*/
'customStyle'?: string | null;
/**
*
* @type {string}
* @memberof PageBlockModel
*/
'surveyFormId'?: string | null;
/**
*
* @type {string}
* @memberof PageBlockModel
*/
'url'?: string | null;
/**
*
* @type {number}
* @memberof PageBlockModel
*/
'order'?: number;
/**
*
* @type {string}
* @memberof PageBlockModel
*/
'name'?: string | null;
/**
*
* @type {string}
* @memberof PageBlockModel
*/
'subtitle'?: string | null;
/**
*
* @type {string}
* @memberof PageBlockModel
*/
'description'?: string | null;
/**
*
* @type {string}
* @memberof PageBlockModel
*/
'overview'?: string | null;
/**
*
* @type {string}
* @memberof PageBlockModel
*/
'content'?: string | null;
/**
*
* @type {boolean}
* @memberof PageBlockModel
*/
'isConfirmed'?: boolean;
/**
*
* @type {Array<MediaModel>}
* @memberof PageBlockModel
*/
'medias'?: Array<MediaModel> | null;
/**
*
* @type {Array<PageBlockLinkModel>}
* @memberof PageBlockModel
*/
'links'?: Array<PageBlockLinkModel> | null;
/**
*
* @type {Array<PageBlockLocationModel>}
* @memberof PageBlockModel
*/
'locations'?: Array<PageBlockLocationModel> | null;
/**
*
* @type {string}
* @memberof PageBlockModel
*/
'surveyFormName'?: string | null;
}
//# sourceMappingURL=page-block-model.d.ts.map