com.checkout.payments.previous.response.PaymentsQueryResponse 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.payments.previous.response;
import com.checkout.HttpMetadata;
import com.google.gson.annotations.SerializedName;
import javax.validation.constraints.Size;
import java.util.List;
import lombok.Data;
import lombok.EqualsAndHashCode;
@Data
@EqualsAndHashCode(callSuper = true)
public final class PaymentsQueryResponse extends HttpMetadata {
@Size(min = 1, max = 100)
private Integer limit;
private Integer skip;
@SerializedName("total_count")
private Integer totalCount;
private List data;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy