/* Options: Date: 2026-04-04 04:54:04 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetSystemActionsForAutomationType.* //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.* /** * Get system actions for the specified automation type */ @Route(Path="/automation/systemactions/{AutomationTypeId}", Verbs="GET") @Api(Description="Get system actions for the specified automation type") open class GetSystemActionsForAutomationType : IReturn { /** * Automation Type Id to get the system actions for. */ @ApiMember(Description="Automation Type Id to get the system actions for.", ParameterType="path") open var AutomationTypeId:UUID? = null /** * RmsTableCtx Id of the object type the automation is for. System Actions can change based on the type they apply to. */ @ApiMember(Description="RmsTableCtx Id of the object type the automation is for. System Actions can change based on the type they apply to.", ParameterType="path") open var RmsTableCtxId:UUID? = null companion object { private val responseType = GetSystemActionsForAutomationTypeResponse::class.java } override fun getResponseType(): Any? = GetSystemActionsForAutomationType.responseType } @ApiResponse(Description="A list of system actions that can be used with a specified automation type") open class GetSystemActionsForAutomationTypeResponse { /** * List of applicable system actions. */ @ApiMember(Description="List of applicable system actions.") open var SystemActions:ArrayList? = null open var ResponseStatus:ResponseStatus? = null } open class ListItemModel { open var ListItemId:UUID? = null open var Name:String? = null open var Description:String? = null open var ShortName:String? = null open var IsDefault:Boolean? = null open var Order:Int? = null open var ListItemTrafficLightId:UUID? = null open var PrimaryListItemImageId:UUID? = null open var PrimaryListItemImageUrl:String? = null open var PrimaryImageThumbnailUrl:String? = null open var OwnerContactId:UUID? = null open var RecordStatus:String? = null }