br.com.anteros.payment.api.braspag.domain.CardOnFile 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;
public class CardOnFile {
@JsonProperty("Usage")
private String usage;
@JsonProperty("Reason")
private String reason;
public String getUsage() {
return usage;
}
public void setUsage(String usage) {
this.usage = usage;
}
public String getReason() {
return reason;
}
public void setReason(String reason) {
this.reason = reason;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy