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

com.checkout.payments.links.PaymentLinkResponse Maven / Gradle / Ivy

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

import com.checkout.common.Resource;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.EqualsAndHashCode;

import java.util.List;

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

    private String id;

    @SerializedName("expires_on")
    private String expiresOn;

    private String reference;

    private List warnings;

}