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

com.sentenial.rest.client.api.account.dto.ValidateAccountRequest Maven / Gradle / Ivy

There is a newer version: 1.0.27.RELEASE
Show newest version
package com.sentenial.rest.client.api.account.dto;

import com.fasterxml.jackson.annotation.JsonUnwrapped;

public class ValidateAccountRequest {

	
	@JsonUnwrapped
	private Account account;
	
	
	public ValidateAccountRequest withAccount(Account account) {
		this.account = account;
		return this;
	}
	
	public Account getAccount() {
		return account;
	}

	public void setAccount(Account account) {
		this.account = account;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy