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

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

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

import com.fasterxml.jackson.annotation.JsonProperty;

public class CaptureRequest {

	@JsonProperty("Amount")
	private int amount;
	
	@JsonProperty("ServiceTaxAmount")
	private int serviceTaxAmount;

	public int getAmount() {
		return amount;
	}

	public void setAmount(int amount) {
		this.amount = amount;
	}

	public int getServiceTaxAmount() {
		return serviceTaxAmount;
	}

	public void setServiceTaxAmount(int serviceTaxAmount) {
		this.serviceTaxAmount = serviceTaxAmount;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy