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