/* Options: Date: 2025-07-04 13:10:27 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetNonCorporateIdentityRegistrationprofiles.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { public static class GetNonCorporateIdentityRegistrationprofiles implements IReturn> { public ArrayList FileExtensions = null; public Boolean OnlyExternalLinkCompatible = null; public String DocType = null; public ArrayList getFileExtensions() { return FileExtensions; } public GetNonCorporateIdentityRegistrationprofiles setFileExtensions(ArrayList value) { this.FileExtensions = value; return this; } public Boolean isOnlyExternalLinkCompatible() { return OnlyExternalLinkCompatible; } public GetNonCorporateIdentityRegistrationprofiles setOnlyExternalLinkCompatible(Boolean value) { this.OnlyExternalLinkCompatible = value; return this; } public String getDocType() { return DocType; } public GetNonCorporateIdentityRegistrationprofiles setDocType(String value) { this.DocType = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class Registrationprofile { public UUID ID = null; public String Name = null; public String Hint = null; public Integer Order = null; public Boolean RegisterAutomatically = null; public Boolean RegisterInBackground = null; public String ThumbnailUrl = null; public String ProgCode = null; public Integer VersionControlType = null; public Integer WOPlaceLogo = null; public String WOPrinterBins = null; public Boolean SelectAllFiles = null; public UUID getId() { return ID; } public Registrationprofile setId(UUID value) { this.ID = value; return this; } public String getName() { return Name; } public Registrationprofile setName(String value) { this.Name = value; return this; } public String getHint() { return Hint; } public Registrationprofile setHint(String value) { this.Hint = value; return this; } public Integer getOrder() { return Order; } public Registrationprofile setOrder(Integer value) { this.Order = value; return this; } public Boolean isRegisterAutomatically() { return RegisterAutomatically; } public Registrationprofile setRegisterAutomatically(Boolean value) { this.RegisterAutomatically = value; return this; } public Boolean isRegisterInBackground() { return RegisterInBackground; } public Registrationprofile setRegisterInBackground(Boolean value) { this.RegisterInBackground = value; return this; } public String getThumbnailUrl() { return ThumbnailUrl; } public Registrationprofile setThumbnailUrl(String value) { this.ThumbnailUrl = value; return this; } public String getProgCode() { return ProgCode; } public Registrationprofile setProgCode(String value) { this.ProgCode = value; return this; } public Integer getVersionControlType() { return VersionControlType; } public Registrationprofile setVersionControlType(Integer value) { this.VersionControlType = value; return this; } public Integer getWoPlaceLogo() { return WOPlaceLogo; } public Registrationprofile setWoPlaceLogo(Integer value) { this.WOPlaceLogo = value; return this; } public String getWoPrinterBins() { return WOPrinterBins; } public Registrationprofile setWoPrinterBins(String value) { this.WOPrinterBins = value; return this; } public Boolean isSelectAllFiles() { return SelectAllFiles; } public Registrationprofile setSelectAllFiles(Boolean value) { this.SelectAllFiles = value; return this; } } }