/* tslint:disable */
/* eslint-disable */
/**
 * DXP API
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */



/**
 * 
 * @export
 * @interface PaymentForCalcFeeResp
 */
export interface PaymentForCalcFeeResp {
    /**
     * The type of payment method used for the payment. Possible values are: /B-Balance; / O-Online Payment; / P-Points; / D-Pay on delivery
     * @type {string}
     * @memberof PaymentForCalcFeeResp
     */
    'paymentMethodType': PaymentForCalcFeeRespPaymentMethodTypeEnum;
    /**
     * The name of the payment method.
     * @type {string}
     * @memberof PaymentForCalcFeeResp
     */
    'paymentMethodName': string;
    /**
     * Payment Method ID, identifier for the payment method
     * @type {number}
     * @memberof PaymentForCalcFeeResp
     */
    'paymentMethodId'?: number;
    /**
     * The unique identifier for the payment channel.
     * @type {number}
     * @memberof PaymentForCalcFeeResp
     */
    'paymentChannelId'?: number;
    /**
     * The icon url.
     * @type {string}
     * @memberof PaymentForCalcFeeResp
     */
    'icon'?: string;
    /**
     * Remarks
     * @type {string}
     * @memberof PaymentForCalcFeeResp
     */
    'remarks'?: string;
}

export const PaymentForCalcFeeRespPaymentMethodTypeEnum = {
    B: 'B',
    O: 'O',
    P: 'P',
    D: 'D'
} as const;

export type PaymentForCalcFeeRespPaymentMethodTypeEnum = typeof PaymentForCalcFeeRespPaymentMethodTypeEnum[keyof typeof PaymentForCalcFeeRespPaymentMethodTypeEnum];


