/* Options: Date: 2026-01-27 18:38:38 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://buildmax.org //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: JsonServerInformationRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { public static class JsonServerInformationRequest extends JsonRequestDto implements IReturn { public String ClientHostName = null; public String UserName = null; public Boolean IsPro = null; public String ClientId = null; public String getClientHostName() { return ClientHostName; } public JsonServerInformationRequest setClientHostName(String value) { this.ClientHostName = value; return this; } public String getUserName() { return UserName; } public JsonServerInformationRequest setUserName(String value) { this.UserName = value; return this; } public Boolean getIsPro() { return IsPro; } public JsonServerInformationRequest setIsPro(Boolean value) { this.IsPro = value; return this; } public String getClientId() { return ClientId; } public JsonServerInformationRequest setClientId(String value) { this.ClientId = value; return this; } private static Object responseType = JsonServerInformationResponse.class; public Object getResponseType() { return responseType; } } public static class JsonServerInformationResponse extends JsonDto { public String ClientIpAddress = null; public String ClientGuid = null; public String ClientName = null; public String ClientId = null; public String UserHomeFolder = null; public String UserEmail = null; public String ServerVersion = null; public Boolean AllowUpdate = null; public String FtpUsername = null; public String FtpPassword = null; public String AdminUsername = null; public String AdminPassword = null; public Integer FtpPort = null; public ArrayList SupportedDocumentFormats = null; public String HpnVersion = null; public String getClientIpAddress() { return ClientIpAddress; } public JsonServerInformationResponse setClientIpAddress(String value) { this.ClientIpAddress = value; return this; } public String getClientGuid() { return ClientGuid; } public JsonServerInformationResponse setClientGuid(String value) { this.ClientGuid = value; return this; } public String getClientName() { return ClientName; } public JsonServerInformationResponse setClientName(String value) { this.ClientName = value; return this; } public String getClientId() { return ClientId; } public JsonServerInformationResponse setClientId(String value) { this.ClientId = value; return this; } public String getUserHomeFolder() { return UserHomeFolder; } public JsonServerInformationResponse setUserHomeFolder(String value) { this.UserHomeFolder = value; return this; } public String getUserEmail() { return UserEmail; } public JsonServerInformationResponse setUserEmail(String value) { this.UserEmail = value; return this; } public String getServerVersion() { return ServerVersion; } public JsonServerInformationResponse setServerVersion(String value) { this.ServerVersion = value; return this; } public Boolean isAllowUpdate() { return AllowUpdate; } public JsonServerInformationResponse setAllowUpdate(Boolean value) { this.AllowUpdate = value; return this; } public String getFtpUsername() { return FtpUsername; } public JsonServerInformationResponse setFtpUsername(String value) { this.FtpUsername = value; return this; } public String getFtpPassword() { return FtpPassword; } public JsonServerInformationResponse setFtpPassword(String value) { this.FtpPassword = value; return this; } public String getAdminUsername() { return AdminUsername; } public JsonServerInformationResponse setAdminUsername(String value) { this.AdminUsername = value; return this; } public String getAdminPassword() { return AdminPassword; } public JsonServerInformationResponse setAdminPassword(String value) { this.AdminPassword = value; return this; } public Integer getFtpPort() { return FtpPort; } public JsonServerInformationResponse setFtpPort(Integer value) { this.FtpPort = value; return this; } public ArrayList getSupportedDocumentFormats() { return SupportedDocumentFormats; } public JsonServerInformationResponse setSupportedDocumentFormats(ArrayList value) { this.SupportedDocumentFormats = value; return this; } public String getHpnVersion() { return HpnVersion; } public JsonServerInformationResponse setHpnVersion(String value) { this.HpnVersion = value; return this; } } public static class JsonRequestDto extends JsonDto { public String ClientCode = null; public String ClientRegistrationCode = null; public String Token = null; public String getClientCode() { return ClientCode; } public JsonRequestDto setClientCode(String value) { this.ClientCode = value; return this; } public String getClientRegistrationCode() { return ClientRegistrationCode; } public JsonRequestDto setClientRegistrationCode(String value) { this.ClientRegistrationCode = value; return this; } public String getToken() { return Token; } public JsonRequestDto setToken(String value) { this.Token = value; return this; } } public static class JsonDto { } }