br.com.moip.request.MoipAccountRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for Moip v2 APIs
package br.com.moip.request;
public class MoipAccountRequest {
private final String id;
public MoipAccountRequest(String moipAccount) {
this.id = moipAccount;
}
public String getId() {
return id;
}
}