/* Options: Date: 2025-08-05 02:20:51 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: EditableItemMessage.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/sitefinity/inlineediting") // @Route("/sitefinity/inlineediting/temp/{ItemId}") public static class EditableItemMessage { public String ItemId = null; public String ItemType = null; public String Provider = null; public ArrayList Fields = null; public String getItemId() { return ItemId; } public EditableItemMessage setItemId(String value) { this.ItemId = value; return this; } public String getItemType() { return ItemType; } public EditableItemMessage setItemType(String value) { this.ItemType = value; return this; } public String getProvider() { return Provider; } public EditableItemMessage setProvider(String value) { this.Provider = value; return this; } public ArrayList getFields() { return Fields; } public EditableItemMessage setFields(ArrayList value) { this.Fields = value; return this; } } public static class FieldValueModel { public String Name = null; public Object Value = null; public ArrayList ComplexValue = null; public String getName() { return Name; } public FieldValueModel setName(String value) { this.Name = value; return this; } public Object getValue() { return Value; } public FieldValueModel setValue(Object value) { this.Value = value; return this; } public ArrayList getComplexValue() { return ComplexValue; } public FieldValueModel setComplexValue(ArrayList value) { this.ComplexValue = value; return this; } } }