com.sentenial.rest.client.api.account.dto.ValidateAccountRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nuapay-rest-client Show documentation
Show all versions of nuapay-rest-client Show documentation
NuaPay REST API Java Bindings
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;
}
}