/* Options: Date: 2025-08-05 02:03:00 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: WorkflowOperationMessage.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/sitefinity/inlineediting/workflow") open class WorkflowOperationMessage { var PageId:String? = null var WorkflowOperation:InlineEditingOperation? = null var CustomWorkflowOperation:String? = null var Items:ArrayList = ArrayList() } enum class InlineEditingOperation { Publish, SaveAsDraft, Custom, } open class ItemContextModel { var ItemId:String? = null var ItemType:String? = null var Provider:String? = null var FieldValues:ArrayList? = null }