/* Options: Date: 2024-10-18 04:35:59 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetRegistrationprofileDetailsWithQueuedDocument.* //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 GetRegistrationprofileDetailsWithQueuedDocument implements IReturn { public UUID ID = null; public Integer QueueDocumentId = null; public Boolean IsOffice365Context = null; public UUID getId() { return ID; } public GetRegistrationprofileDetailsWithQueuedDocument setId(UUID value) { this.ID = value; return this; } public Integer getQueueDocumentId() { return QueueDocumentId; } public GetRegistrationprofileDetailsWithQueuedDocument setQueueDocumentId(Integer value) { this.QueueDocumentId = value; return this; } public Boolean getIsOffice365Context() { return IsOffice365Context; } public GetRegistrationprofileDetailsWithQueuedDocument setIsOffice365Context(Boolean value) { this.IsOffice365Context = value; return this; } private static Object responseType = RegistrationprofileDetails.class; public Object getResponseType() { return responseType; } } public static class RegistrationprofileDetails extends Registrationprofile { public ArrayList Steps = null; public ArrayList Messages = null; public Boolean ReadOnly = null; public ArrayList getSteps() { return Steps; } public RegistrationprofileDetails setSteps(ArrayList value) { this.Steps = value; return this; } public ArrayList getMessages() { return Messages; } public RegistrationprofileDetails setMessages(ArrayList value) { this.Messages = value; return this; } public Boolean isReadOnly() { return ReadOnly; } public RegistrationprofileDetails setReadOnly(Boolean value) { this.ReadOnly = value; return this; } } public static class RegistrationProfileFieldStateBase { public UUID DocumentFieldID = null; public Boolean Required = null; public Boolean Visible = null; public Boolean Readonly = null; public UUID getDocumentFieldID() { return DocumentFieldID; } public RegistrationProfileFieldStateBase setDocumentFieldID(UUID value) { this.DocumentFieldID = value; return this; } public Boolean isRequired() { return Required; } public RegistrationProfileFieldStateBase setRequired(Boolean value) { this.Required = value; return this; } public Boolean isVisible() { return Visible; } public RegistrationProfileFieldStateBase setVisible(Boolean value) { this.Visible = value; return this; } public Boolean isReadonly() { return Readonly; } public RegistrationProfileFieldStateBase setReadonly(Boolean value) { this.Readonly = value; return this; } } public static class RegistrationprofileStep { public UUID ID = null; public String Name = null; public Integer Order = null; public RegistrationprofileStepLayout Layout = null; public ArrayList Groups = null; public UUID getId() { return ID; } public RegistrationprofileStep setId(UUID value) { this.ID = value; return this; } public String getName() { return Name; } public RegistrationprofileStep setName(String value) { this.Name = value; return this; } public Integer getOrder() { return Order; } public RegistrationprofileStep setOrder(Integer value) { this.Order = value; return this; } public RegistrationprofileStepLayout getLayout() { return Layout; } public RegistrationprofileStep setLayout(RegistrationprofileStepLayout value) { this.Layout = value; return this; } public ArrayList getGroups() { return Groups; } public RegistrationprofileStep setGroups(ArrayList value) { this.Groups = value; return this; } } public static class InformationMessageBase implements IInformationMessage { public MessageType Type = null; public String Summary = null; public String FullMessage = null; public String FieldName = null; public Boolean KeepOpen = null; public MessageType getType() { return Type; } public InformationMessageBase setType(MessageType value) { this.Type = value; return this; } public String getSummary() { return Summary; } public InformationMessageBase setSummary(String value) { this.Summary = value; return this; } public String getFullMessage() { return FullMessage; } public InformationMessageBase setFullMessage(String value) { this.FullMessage = value; return this; } public String getFieldName() { return FieldName; } public InformationMessageBase setFieldName(String value) { this.FieldName = value; return this; } public Boolean isKeepOpen() { return KeepOpen; } public InformationMessageBase setKeepOpen(Boolean value) { this.KeepOpen = value; return this; } } public static enum RegistrationprofileStepLayout { OneColumn12, TwoColumn66, TwoColumn75, ThreeColumn444; } public static class RegistrationprofileGroup { public UUID ID = null; public String Name = null; public String Label = null; public Integer Order = null; public Integer ColumnIndex = null; public ArrayList Fields = null; public Integer LabelLayoutType = null; public UUID getId() { return ID; } public RegistrationprofileGroup setId(UUID value) { this.ID = value; return this; } public String getName() { return Name; } public RegistrationprofileGroup setName(String value) { this.Name = value; return this; } public String getLabel() { return Label; } public RegistrationprofileGroup setLabel(String value) { this.Label = value; return this; } public Integer getOrder() { return Order; } public RegistrationprofileGroup setOrder(Integer value) { this.Order = value; return this; } public Integer getColumnIndex() { return ColumnIndex; } public RegistrationprofileGroup setColumnIndex(Integer value) { this.ColumnIndex = value; return this; } public ArrayList getFields() { return Fields; } public RegistrationprofileGroup setFields(ArrayList value) { this.Fields = value; return this; } public Integer getLabelLayoutType() { return LabelLayoutType; } public RegistrationprofileGroup setLabelLayoutType(Integer value) { this.LabelLayoutType = value; return this; } } public static enum MessageType { Information(1), Warning(2), Error(3), Success(4); private final int value; MessageType(final int intValue) { value = intValue; } public int getValue() { return value; } } public static interface IInformationMessage { @DataMember public MessageType Type = null; @DataMember public String Summary = null; @DataMember public String FullMessage = null; @DataMember public String FieldName = null; @DataMember public Boolean KeepOpen = null; } public static class RegistrationprofileField { public UUID ID = null; public UUID DocumentFieldID = null; public String Label = null; public String UserControlType = null; public ArrayList> UserControlProperties = null; public String Hint = null; public Integer Order = null; public Boolean HasDependableFields = null; public String EntityName = null; public RegistrationProfileFieldStateBase State = null; public UUID getId() { return ID; } public RegistrationprofileField setId(UUID value) { this.ID = value; return this; } public UUID getDocumentFieldID() { return DocumentFieldID; } public RegistrationprofileField setDocumentFieldID(UUID value) { this.DocumentFieldID = value; return this; } public String getLabel() { return Label; } public RegistrationprofileField setLabel(String value) { this.Label = value; return this; } public String getUserControlType() { return UserControlType; } public RegistrationprofileField setUserControlType(String value) { this.UserControlType = value; return this; } public ArrayList> getUserControlProperties() { return UserControlProperties; } public RegistrationprofileField setUserControlProperties(ArrayList> value) { this.UserControlProperties = value; return this; } public String getHint() { return Hint; } public RegistrationprofileField setHint(String value) { this.Hint = value; return this; } public Integer getOrder() { return Order; } public RegistrationprofileField setOrder(Integer value) { this.Order = value; return this; } public Boolean isHasDependableFields() { return HasDependableFields; } public RegistrationprofileField setHasDependableFields(Boolean value) { this.HasDependableFields = value; return this; } public String getEntityName() { return EntityName; } public RegistrationprofileField setEntityName(String value) { this.EntityName = value; return this; } public RegistrationProfileFieldStateBase getState() { return State; } public RegistrationprofileField setState(RegistrationProfileFieldStateBase value) { this.State = value; return this; } } 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; } } }