(* Options: Date: 2026-04-04 08:35:06 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetSystemActionsForAutomationType.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type ListItemModel() = member val ListItemId:Guid = new Guid() with get,set member val Name:String = null with get,set member val Description:String = null with get,set member val ShortName:String = null with get,set member val IsDefault:Boolean = new Boolean() with get,set member val Order:Int32 = new Int32() with get,set member val ListItemTrafficLightId:Guid = new Guid() with get,set member val PrimaryListItemImageId:Guid = new Guid() with get,set member val PrimaryListItemImageUrl:String = null with get,set member val PrimaryImageThumbnailUrl:String = null with get,set member val OwnerContactId:Guid = new Guid() with get,set member val RecordStatus:String = null with get,set [] [] type ResponseStatus() = [] member val ErrorCode:String = null with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ResizeArray = null with get,set [] member val Meta:Dictionary = null with get,set [] [] type GetSystemActionsForAutomationTypeResponse() = /// ///List of applicable system actions. /// [] member val SystemActions:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get system actions for the specified automation type /// [] [] [] type GetSystemActionsForAutomationType() = interface IReturn /// ///Automation Type Id to get the system actions for. /// [] member val AutomationTypeId:Guid = new Guid() with get,set /// ///RmsTableCtx Id of the object type the automation is for. System Actions can change based on the type they apply to. /// [] member val RmsTableCtxId:Guid = new Guid() with get,set