br.com.moip.response.NotificationPreferenceListResponse 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.response;
import br.com.moip.resource.NotificationPreference;
import java.util.ArrayList;
public class NotificationPreferenceListResponse extends ArrayList {
@Override
public String toString() {
StringBuilder sb = new StringBuilder("NotificationPreferenceListResponse [");
for (int i = 0; i < this.size(); i ++) {
if (i > 0) {
sb.append(",");
}
sb.append("(").append(this.get(i)).append(")");
}
sb.append("]");
return sb.toString();
}
}