br.com.anteros.payment.api.braspag.resource.SubordinateNotification 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.resource;
import com.fasterxml.jackson.annotation.JsonProperty;
import br.com.anteros.payment.api.braspag.domain.subordinate.Analysis;
public class SubordinateNotification {
@JsonProperty("MerchantId")
private String MerchantId;
@JsonProperty("Analysis")
private Analysis Analysis;
public String getMerchantId() {
return MerchantId;
}
public void setMerchantId(String merchantId) {
MerchantId = merchantId;
}
public Analysis getAnalysis() {
return Analysis;
}
public void setAnalysis(Analysis analysis) {
Analysis = analysis;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy