/* Options: Date: 2026-06-01 13:31:15 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: RenderMessage.* //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="/sitefinity/inlineediting/render") public static class RenderMessage { public String PageId = null; public String ControlId = null; public String DataItemId = null; public String FieldName = null; public String Url = null; public String getPageId() { return PageId; } public RenderMessage setPageId(String value) { this.PageId = value; return this; } public String getControlId() { return ControlId; } public RenderMessage setControlId(String value) { this.ControlId = value; return this; } public String getDataItemId() { return DataItemId; } public RenderMessage setDataItemId(String value) { this.DataItemId = value; return this; } public String getFieldName() { return FieldName; } public RenderMessage setFieldName(String value) { this.FieldName = value; return this; } public String getUrl() { return Url; } public RenderMessage setUrl(String value) { this.Url = value; return this; } } }