/* Options: Date: 2025-07-04 08:24:58 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: GetProcessDetailsRegistrationForm.* //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="/processes/registrationform", Verbs="POST") public static class GetProcessDetailsRegistrationForm implements IReturn { public Integer ProcessID = null; public UUID RegistrationprofileID = null; public UUID DocumentID = null; public ArrayList CurrentRegistrationprofileFieldValues = null; public Boolean IsOffice365Context = null; public String PidTag = null; public Integer getProcessID() { return ProcessID; } public GetProcessDetailsRegistrationForm setProcessID(Integer value) { this.ProcessID = value; return this; } public UUID getRegistrationprofileID() { return RegistrationprofileID; } public GetProcessDetailsRegistrationForm setRegistrationprofileID(UUID value) { this.RegistrationprofileID = value; return this; } public UUID getDocumentID() { return DocumentID; } public GetProcessDetailsRegistrationForm setDocumentID(UUID value) { this.DocumentID = value; return this; } public ArrayList getCurrentRegistrationprofileFieldValues() { return CurrentRegistrationprofileFieldValues; } public GetProcessDetailsRegistrationForm setCurrentRegistrationprofileFieldValues(ArrayList value) { this.CurrentRegistrationprofileFieldValues = value; return this; } public Boolean getIsOffice365Context() { return IsOffice365Context; } public GetProcessDetailsRegistrationForm setIsOffice365Context(Boolean value) { this.IsOffice365Context = value; return this; } public String getPidTag() { return PidTag; } public GetProcessDetailsRegistrationForm setPidTag(String value) { this.PidTag = value; return this; } private static Object responseType = ProcessDetails.class; public Object getResponseType() { return responseType; } } public static class ProcessDetails extends SideStepDetails { public Boolean ShowCoordinatorField = null; public Boolean isShowCoordinatorField() { return ShowCoordinatorField; } public ProcessDetails setShowCoordinatorField(Boolean value) { this.ShowCoordinatorField = value; return this; } } public static class RegistrationProfileFieldValue { public UUID DocumentFieldID = null; public String Value = null; public String ShadowValue = null; public Boolean IsModifiedByUser = null; public UUID getDocumentFieldID() { return DocumentFieldID; } public RegistrationProfileFieldValue setDocumentFieldID(UUID value) { this.DocumentFieldID = value; return this; } public String getValue() { return Value; } public RegistrationProfileFieldValue setValue(String value) { this.Value = value; return this; } public String getShadowValue() { return ShadowValue; } public RegistrationProfileFieldValue setShadowValue(String value) { this.ShadowValue = value; return this; } public Boolean getIsModifiedByUser() { return IsModifiedByUser; } public RegistrationProfileFieldValue setIsModifiedByUser(Boolean value) { this.IsModifiedByUser = value; return this; } } public static class SideStepDetails extends AdhocTransitionDetails { public User Coordinator = null; public WorkflowTaskActionComment Comment = null; public Boolean Urgent = null; public User getCoordinator() { return Coordinator; } public SideStepDetails setCoordinator(User value) { this.Coordinator = value; return this; } public WorkflowTaskActionComment getComment() { return Comment; } public SideStepDetails setComment(WorkflowTaskActionComment value) { this.Comment = value; return this; } public Boolean isUrgent() { return Urgent; } public SideStepDetails setUrgent(Boolean value) { this.Urgent = value; return this; } } }