/**
 * CloudHospital Api
 * CloudHospital application with Swagger, Swashbuckle, and API versioning.
 *
 * The version of the OpenAPI document: 2
 * 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 { ChargeStatus } from './charge-status';
import { MediaModel } from './media-model';
import { PaymentMethod } from './payment-method';
import { PaymentStatus } from './payment-status';
import { RefundStatus } from './refund-status';
/**
 *
 * @export
 * @interface PaymentModel
 */
export interface PaymentModel {
    /**
     *
     * @type {PaymentMethod}
     * @memberof PaymentModel
     */
    'paymentMethod'?: PaymentMethod;
    /**
     *
     * @type {string}
     * @memberof PaymentModel
     */
    'currency'?: string | null;
    /**
     *
     * @type {number}
     * @memberof PaymentModel
     */
    'fee'?: number;
    /**
     *
     * @type {number}
     * @memberof PaymentModel
     */
    'applicationFee'?: number;
    /**
     *
     * @type {PaymentStatus}
     * @memberof PaymentModel
     */
    'paymentStatus'?: PaymentStatus;
    /**
     *
     * @type {ChargeStatus}
     * @memberof PaymentModel
     */
    'chargeStatus'?: ChargeStatus;
    /**
     *
     * @type {RefundStatus}
     * @memberof PaymentModel
     */
    'refundStatus'?: RefundStatus;
    /**
     *
     * @type {Array<MediaModel>}
     * @memberof PaymentModel
     */
    'medias'?: Array<MediaModel> | null;
}
//# sourceMappingURL=payment-model.d.ts.map