/* Options: Date: 2025-08-05 02:07:00 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ControlDataMessage.* //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="/personalizations/render", Verbs="GET") public static class ControlDataMessage { public UUID PageNodeId = null; public UUID PageDataId = null; public ArrayList Controls = null; public String Url = null; public String PageNodeKey = null; public String CorrelationId = null; public UUID getPageNodeId() { return PageNodeId; } public ControlDataMessage setPageNodeId(UUID value) { this.PageNodeId = value; return this; } public UUID getPageDataId() { return PageDataId; } public ControlDataMessage setPageDataId(UUID value) { this.PageDataId = value; return this; } public ArrayList getControls() { return Controls; } public ControlDataMessage setControls(ArrayList value) { this.Controls = value; return this; } public String getUrl() { return Url; } public ControlDataMessage setUrl(String value) { this.Url = value; return this; } public String getPageNodeKey() { return PageNodeKey; } public ControlDataMessage setPageNodeKey(String value) { this.PageNodeKey = value; return this; } public String getCorrelationId() { return CorrelationId; } public ControlDataMessage setCorrelationId(String value) { this.CorrelationId = value; return this; } } }