> + > +@AutoValue > +public abstract class CreateMember { > + > + @Nullable > + public abstract String name(); > + > + public abstract List<String> peerURLs(); > + > + public abstract List<String> clientURLs(); > + > + CreateMember() { > + } > + > + @SerializedNames({ "name", "peerURLs", "clientURLs" }) > + public static CreateMember create(final String name, final List<String> > peerURLs, List<String> clientURLs) {
Thanks @cdancy ! That sounds perfect. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/196/files#r37645426