UNPKG

ch-admin-api-client-typescript

Version:
124 lines 2.53 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 { AuditableEntityModel } from './auditable-entity-model'; import { LocalizedUrlModel } from './localized-url-model'; import { MediaModel } from './media-model'; /** * * @export * @interface PolicyModel */ export interface PolicyModel { /** * * @type {string} * @memberof PolicyModel */ 'id'?: string; /** * * @type {string} * @memberof PolicyModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof PolicyModel */ 'name'?: string | null; /** * * @type {string} * @memberof PolicyModel */ 'slug'?: string | null; /** * * @type {boolean} * @memberof PolicyModel */ 'confirmed'?: boolean; /** * * @type {string} * @memberof PolicyModel */ 'photo'?: string | null; /** * * @type {string} * @memberof PolicyModel */ 'photoThumbnail'?: string | null; /** * * @type {AuditableEntityModel} * @memberof PolicyModel */ 'auditableEntity'?: AuditableEntityModel; /** * * @type {string} * @memberof PolicyModel */ 'description'?: string | null; /** * * @type {string} * @memberof PolicyModel */ 'overview'?: string | null; /** * * @type {string} * @memberof PolicyModel */ 'content'?: string | null; /** * * @type {string} * @memberof PolicyModel */ 'hospitalId'?: string; /** * * @type {string} * @memberof PolicyModel */ 'hospitalName'?: string | null; /** * * @type {string} * @memberof PolicyModel */ 'hospitalSlug'?: string | null; /** * * @type {string} * @memberof PolicyModel */ 'customStyle'?: string | null; /** * * @type {Array<LocalizedUrlModel>} * @memberof PolicyModel */ 'localizedUrls'?: Array<LocalizedUrlModel> | null; /** * * @type {Array<MediaModel>} * @memberof PolicyModel */ 'medias'?: Array<MediaModel> | null; } //# sourceMappingURL=policy-model.d.ts.map