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

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

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

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;

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

    private String id;

    private String status;

    private Currency currency;

    @SerializedName("payout_fee")
    private String payoutFee;

    @SerializedName("net_amount")
    private String netAmount;

    @SerializedName("carried_forward_amount")
    private String carriedForwardAmount;

    @SerializedName("current_period_amount")
    private String currentPeriodAmount;

    private String date;

    @SerializedName("period_start")
    private String periodStart;

    @SerializedName("period_end")
    private String periodEnd;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy