com.checkout.reconciliation.previous.PayoutStatement 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.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