in cloudsigma2/src/main/java/org/jclouds/cloudsigma2/domain/ProfileInfo.java [267:303]
public ProfileInfo(String address, boolean apiHttpsOnly, String autotopupAmount, String autotopupThreshold,
String bankReference, String company, String country, String currency, String email,
String firstName, boolean hasAutotopup, boolean invoicing, boolean keyAuth, String language,
String lastName, boolean mailingListEnabled, Map<String, String> meta, String myNotes,
String nickname, String phone, String postcode, String reseller, Date signupTime, String state,
String taxName, double taxRate, String title, String town, String uuid, String vat) {
this.address = address;
isApiHttpsOnly = apiHttpsOnly;
this.autotopupAmount = autotopupAmount;
this.autotopupThreshold = autotopupThreshold;
this.bankReference = bankReference;
this.company = company;
this.country = country;
this.currency = currency;
this.email = email;
this.firstName = firstName;
this.hasAutotopup = hasAutotopup;
this.invoicing = invoicing;
isKeyAuth = keyAuth;
this.language = language;
this.lastName = lastName;
isMailingListEnabled = mailingListEnabled;
this.meta = meta;
this.myNotes = myNotes;
this.nickname = nickname;
this.phone = phone;
this.postcode = postcode;
this.reseller = reseller;
this.signupTime = signupTime;
this.state = state;
this.taxName = taxName;
this.taxRate = taxRate;
this.title = title;
this.town = town;
this.uuid = uuid;
this.vat = vat;
}