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

me.pagar.CardHashKey Maven / Gradle / Ivy

The newest version!
package me.pagar;

import com.google.gson.annotations.SerializedName;

public class CardHashKey {

	
	private int id;
	@SerializedName("date_created")
	private String dateCreated;
	
	@SerializedName("public_key")
	private String publickey;

	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}

	public String getDateCreated() {
		return dateCreated;
	}

	public void setDateCreated(String dateCreated) {
		this.dateCreated = dateCreated;
	}

	public String getPublickey() {
		return publickey;
	}

	public void setPublickey(String publickey) {
		this.publickey = publickey;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy