/* Options: Date: 2026-04-05 18:16:54 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ETSRegistrationSubmit.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/ETS/Registration", Verbs="POST") public static class ETSRegistrationSubmit implements IReturn { public String CompanyName = null; public String FullName = null; public String EmailAddress = null; public String TelephoneNumber = null; public Integer CountryId = null; public String getCompanyName() { return CompanyName; } public ETSRegistrationSubmit setCompanyName(String value) { this.CompanyName = value; return this; } public String getFullName() { return FullName; } public ETSRegistrationSubmit setFullName(String value) { this.FullName = value; return this; } public String getEmailAddress() { return EmailAddress; } public ETSRegistrationSubmit setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getTelephoneNumber() { return TelephoneNumber; } public ETSRegistrationSubmit setTelephoneNumber(String value) { this.TelephoneNumber = value; return this; } public Integer getCountryId() { return CountryId; } public ETSRegistrationSubmit setCountryId(Integer value) { this.CountryId = value; return this; } private static Object responseType = SavingResult.class; public Object getResponseType() { return responseType; } } public static class SavingResult { public Integer Id = null; public UUID GuidId = null; public SavingResultStatus Status = null; public ArrayList Errors = null; public Integer getId() { return Id; } public SavingResult setId(Integer value) { this.Id = value; return this; } public UUID getGuidId() { return GuidId; } public SavingResult setGuidId(UUID value) { this.GuidId = value; return this; } public SavingResultStatus getStatus() { return Status; } public SavingResult setStatus(SavingResultStatus value) { this.Status = value; return this; } public ArrayList getErrors() { return Errors; } public SavingResult setErrors(ArrayList value) { this.Errors = value; return this; } } public static enum SavingResultStatus { Success, Error; } public static class SavingResultErrors { public String Error = null; public String getError() { return Error; } public SavingResultErrors setError(String value) { this.Error = value; return this; } } }