All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.checkout.reconciliation.previous.PaymentReportData Maven / Gradle / Ivy

There is a newer version: 6.4.2
Show newest version
package com.checkout.reconciliation.previous;

import com.checkout.common.CountryCode;
import com.checkout.common.Currency;
import com.checkout.common.Resource;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;

import java.util.List;

@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public final class PaymentReportData extends Resource {

    private String id;

    @SerializedName("processing_currency")
    private Currency processingCurrency;

    @SerializedName("payout_currency")
    private Currency payoutCurrency;

    @SerializedName("requested_on")
    private String requestedOn;

    @SerializedName("channel_name")
    private String channelName;

    private String reference;

    @SerializedName("payment_method")
    private String paymentMethod;

    @SerializedName("card_type")
    private String cardType;

    @SerializedName("card_category")
    private String cardCategory;

    @SerializedName("issuer_country")
    private CountryCode issuerCountry;

    @SerializedName("merchant_country")
    private CountryCode merchantCountry;

    private String region;

    private String mid;

    private List actions;

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy