com.checkout.reconciliation.previous.PaymentReportData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of checkout-sdk-java Show documentation
Show all versions of checkout-sdk-java Show documentation
Checkout SDK for Java https://checkout.com
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