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

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

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

import com.fasterxml.jackson.annotation.JsonProperty;

public class RecurrentQuery {
	
	@JsonProperty("Customer")
	private Customer customer;
	
	@JsonProperty("RecurrentPayment")
    private RecurrentPaymentQueryModel recurrentPayment;

	public Customer getCustomer() {
		return customer;
	}

	public void setCustomer(Customer customer) {
		this.customer = customer;
	}

	public RecurrentPaymentQueryModel getRecurrentPayment() {
		return recurrentPayment;
	}

	public void setRecurrentPayment(RecurrentPaymentQueryModel recurrentPayment) {
		this.recurrentPayment = recurrentPayment;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy