com.checkout.disputes.PaymentDispute 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.disputes;
import com.checkout.common.Currency;
import com.checkout.common.Resource;
import com.google.gson.annotations.SerializedName;
import lombok.Builder;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import java.time.Instant;
@Data
@Builder
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public final class PaymentDispute extends Resource {
private String id;
@SerializedName("action_id")
private String actionId;
private Long amount;
private Currency currency;
private String method;
private String arn;
@SerializedName("processed_on")
private Instant processedOn;
/**
* Not available on Previous
*/
@SerializedName("processing_channel_id")
private String processingChannelId;
private String mcc;
@SerializedName("3ds")
private ThreeDSVersionEnrollment threeDSVersionEnrollment;
private String eci;
@SerializedName("has_refund")
private Boolean hasRefund;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy