br.com.anteros.payment.api.braspag.domain.VerifyCardRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-Payment-Api Show documentation
Show all versions of Anteros-Payment-Api Show documentation
Anteros Payment Integration Api for Java.
The newest version!
package br.com.anteros.payment.api.braspag.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
import br.com.anteros.payment.api.braspag.domain.enums.ProviderType;
public class VerifyCardRequest {
@JsonProperty("Card")
private Card card;
@JsonProperty("Provider")
private ProviderType provider;
public Card getCard() {
return card;
}
public void setCard(Card card) {
this.card = card;
}
public ProviderType getProvider() {
return provider;
}
public void setProvider(ProviderType provider) {
this.provider = provider;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy