/**
 * 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 { BankTransferPaymentModel } from './bank-transfer-payment-model';
import { HospitalPaymentGatewayModel } from './hospital-payment-gateway-model';
import { PaymentMethod } from './payment-method';
import { UpiPaymentModel } from './upi-payment-model';
/**
 *
 * @export
 * @interface UpdateHospitalPaymentMethodCommand
 */
export interface UpdateHospitalPaymentMethodCommand {
    /**
     *
     * @type {PaymentMethod}
     * @memberof UpdateHospitalPaymentMethodCommand
     */
    'paymentMethod'?: PaymentMethod;
    /**
     *
     * @type {string}
     * @memberof UpdateHospitalPaymentMethodCommand
     */
    'additionalNote'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof UpdateHospitalPaymentMethodCommand
     */
    'isEnabled'?: boolean | null;
    /**
     *
     * @type {number}
     * @memberof UpdateHospitalPaymentMethodCommand
     */
    'order'?: number | null;
    /**
     *
     * @type {BankTransferPaymentModel}
     * @memberof UpdateHospitalPaymentMethodCommand
     */
    'bankTransfer'?: BankTransferPaymentModel;
    /**
     *
     * @type {UpiPaymentModel}
     * @memberof UpdateHospitalPaymentMethodCommand
     */
    'upi'?: UpiPaymentModel;
    /**
     *
     * @type {HospitalPaymentGatewayModel}
     * @memberof UpdateHospitalPaymentMethodCommand
     */
    'hospitalPaymentGateway'?: HospitalPaymentGatewayModel;
}
//# sourceMappingURL=update-hospital-payment-method-command.d.ts.map