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

jp.gopay.sdk.models.common.GopayCustomerId Maven / Gradle / Ivy

There is a newer version: 0.11.17
Show newest version
package jp.gopay.sdk.models.common;

import com.google.gson.annotations.SerializedName;
import jp.gopay.sdk.models.response.GoPayResponse;

import java.util.UUID;

public class GopayCustomerId extends GoPayResponse {

    public static String metadataKey = "gopay-customer-id";

    @SerializedName("customer_id")
    private UUID gopayCustomerId;

    public GopayCustomerId(UUID gopayCustomerId) {
        this.gopayCustomerId = gopayCustomerId;
    }

    public UUID toUUID(){
        return this.gopayCustomerId;
    }

    @Override
    public String toString(){
        if(this.gopayCustomerId == null){
            return null;
        }
        return this.gopayCustomerId.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy