/* Options: Date: 2026-04-04 06:49:14 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: GetAutomationTypesByObjectType.* //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 automation types available for the specified object type (rmsTableCtxId) */ @Route(Path="/automation/availabletypes/{RmsTableCtxId}", Verbs="GET") @Api(Description="Get automation types available for the specified object type (rmsTableCtxId)") open class GetAutomationTypesByObjectType : IReturn { /** * RmsTableCtx Id to filter available automation types by */ @ApiMember(Description="RmsTableCtx Id to filter available automation types by", ParameterType="path") open var RmsTableCtxId:UUID? = null companion object { private val responseType = GetAutomationTypesByObjectTypeResponse::class.java } override fun getResponseType(): Any? = GetAutomationTypesByObjectType.responseType } @ApiResponse(Description="A list of automation types assignable to a particular object type") open class GetAutomationTypesByObjectTypeResponse { /** * List of applicable automation types. */ @ApiMember(Description="List of applicable automation types.") open var AutomationTypes: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 }