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

com.checkout.payments.response.PaymentResponseBalances Maven / Gradle / Ivy

There is a newer version: 6.4.2
Show newest version
package com.checkout.payments.response;

import com.google.gson.annotations.SerializedName;
import lombok.Builder;
import lombok.Data;

@Data
@Builder
public final class PaymentResponseBalances {

    @SerializedName("total_authorized")
    private Long totalAuthorized;

    @SerializedName("total_voided")
    private Long totalVoided;

    @SerializedName("available_to_void")
    private Long availableToVoid;

    @SerializedName("total_captured")
    private Long totalCaptured;

    @SerializedName("available_to_capture")
    private Long availableToCapture;

    @SerializedName("total_refunded")
    private Long totalRefunded;

    @SerializedName("available_to_refund")
    private Long availableToRefund;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy