/* Options: Date: 2026-04-02 03:46:23 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ControlDataMessage.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; 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; } } }