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

br.com.anteros.payment.api.braspag.domain.Wallet Maven / Gradle / Ivy

The newest version!
package br.com.anteros.payment.api.braspag.domain;

import java.util.Map;

import com.fasterxml.jackson.annotation.JsonProperty;

import br.com.anteros.payment.api.braspag.domain.enums.WalletType;

public class Wallet {

	@JsonProperty("Type")
	private WalletType type;

	@JsonProperty("WalletKey")
	private String walletKey;

	@JsonProperty("Cavv")
	private String cavv;

	@JsonProperty("Eci")
	private short eci;

	@JsonProperty("AdditionalData")
	private Map additionalData;

	public WalletType getType() {
		return type;
	}

	public void setType(WalletType type) {
		this.type = type;
	}

	public String getWalletKey() {
		return walletKey;
	}

	public void setWalletKey(String walletKey) {
		this.walletKey = walletKey;
	}

	public String getCavv() {
		return cavv;
	}

	public void setCavv(String cavv) {
		this.cavv = cavv;
	}

	public short getEci() {
		return eci;
	}

	public void setEci(short eci) {
		this.eci = eci;
	}

	public Map getAdditionalData() {
		return additionalData;
	}

	public void setAdditionalData(Map additionalData) {
		this.additionalData = additionalData;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy