/* Options: Date: 2025-08-05 01:59:42 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: FieldValueMessage.* //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/fieldValue") public static class FieldValueMessage { public String DataItemId = null; public String ItemType = null; public String FieldType = null; public String FieldName = null; public String Provider = null; public String getDataItemId() { return DataItemId; } public FieldValueMessage setDataItemId(String value) { this.DataItemId = value; return this; } public String getItemType() { return ItemType; } public FieldValueMessage setItemType(String value) { this.ItemType = value; return this; } public String getFieldType() { return FieldType; } public FieldValueMessage setFieldType(String value) { this.FieldType = value; return this; } public String getFieldName() { return FieldName; } public FieldValueMessage setFieldName(String value) { this.FieldName = value; return this; } public String getProvider() { return Provider; } public FieldValueMessage setProvider(String value) { this.Provider = value; return this; } } }