/* Options: Date: 2026-04-02 03:54:58 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: WorkflowOperationMessage.* //ExcludeTypes: //InitializeCollections: False //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.* @Route(Path="/sitefinity/inlineediting/workflow") open class WorkflowOperationMessage { open var PageId:String? = null open var WorkflowOperation:InlineEditingOperation? = null open var CustomWorkflowOperation:String? = null open var Items:ArrayList? = null } enum class InlineEditingOperation { Publish, SaveAsDraft, Custom, } open class ItemContextModel { open var ItemId:String? = null open var ItemType:String? = null open var Provider:String? = null open var FieldValues:ArrayList? = null }