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

me.pagar.model.CardHashKey Maven / Gradle / Ivy

The newest version!
package me.pagar.model;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class CardHashKey extends PagarMeModel{

    @Expose(serialize = false)
    private String ip;

    @Expose(serialize = false)
    @SerializedName("public_key")
    private String publicKey;

    public String getPublicKey() {
        return publicKey;
    }

    public String getIp() {
        return ip;
    }

    @Override
    public void setId(Integer id) {
        throw new UnsupportedOperationException("Not allowed.");
    }

    @Override
    public void setClassName(String className) {
        throw new UnsupportedOperationException("Not allowed.");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy