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

com.checkout.issuing.cards.responses.enrollment.ThreeDSEnrollmentDetailsResponse Maven / Gradle / Ivy

There is a newer version: 6.4.2
Show newest version
package com.checkout.issuing.cards.responses.enrollment;

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

import java.time.Instant;

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

    private String locale;

    @SerializedName("phone_number")
    private Phone phoneNumber;

    @SerializedName("created_date")
    private Instant createdDate;

    @SerializedName("last_modified_date")
    private Instant lastModifiedDate;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy