UNPKG

ch-admin-api-client-typescript

Version:
112 lines 2.48 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 { BenefitDomainName } from './benefit-domain-name'; import { BenefitProvider } from './benefit-provider'; import { BenefitStatus } from './benefit-status'; /** * * @export * @interface CreateBenefitCommand */ export interface CreateBenefitCommand { /** * * @type {string} * @memberof CreateBenefitCommand */ 'languageCode'?: string | null; /** * * @type {BenefitProvider} * @memberof CreateBenefitCommand */ 'provider'?: BenefitProvider; /** * * @type {boolean} * @memberof CreateBenefitCommand */ 'forPartnerHospital'?: boolean; /** * * @type {boolean} * @memberof CreateBenefitCommand */ 'forNonPartnerHospital'?: boolean; /** * * @type {string} * @memberof CreateBenefitCommand */ 'iconUrl'?: string | null; /** * * @type {string} * @memberof CreateBenefitCommand */ 'iconThumbnailUrl'?: string | null; /** * * @type {string} * @memberof CreateBenefitCommand */ 'policy'?: string | null; /** * * @type {number} * @memberof CreateBenefitCommand */ 'order'?: number; /** * * @type {BenefitStatus} * @memberof CreateBenefitCommand */ 'status'?: BenefitStatus; /** * * @type {string} * @memberof CreateBenefitCommand */ 'name'?: string | null; /** * * @type {string} * @memberof CreateBenefitCommand */ 'description'?: string | null; /** * * @type {string} * @memberof CreateBenefitCommand */ 'overview'?: string | null; /** * * @type {string} * @memberof CreateBenefitCommand */ 'content'?: string | null; /** * * @type {Array<BenefitDomainName>} * @memberof CreateBenefitCommand */ 'domains'?: Array<BenefitDomainName> | null; /** * * @type {Array<string>} * @memberof CreateBenefitCommand */ 'excludedCountries'?: Array<string> | null; } //# sourceMappingURL=create-benefit-command.d.ts.map