/* Options: Date: 2026-04-04 02:56:48 SwiftVersion: 6.0 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetAutomationsForObject.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Get automations that are setup for an object */ // @Route("/automation/{ObjectId}/list", "GET") // @Api(Description="Get automations that are setup for an object") public class GetAutomationsForObject : IReturn, Codable { public typealias Return = GetAutomationsForObjectResponse /** * Object to retrieve automations for. */ // @ApiMember(Description="Object to retrieve automations for.", ParameterType="path") public var objectId:String? required public init(){} } // @ApiResponse(Description="List of automations that are setup for an object") public class GetAutomationsForObjectResponse : Codable { /** * List of automations. */ // @ApiMember(Description="List of automations.") public var automations:[AutomationModel]? public var responseStatus:ResponseStatus? required public init(){} } public class AutomationModel : Codable { /** * The unique automation Id */ // @ApiMember(Description="The unique automation Id", ParameterType="query") public var automationId:String? /** * The automation type Id */ // @ApiMember(Description="The automation type Id", ParameterType="query") public var automationTypeId:String? /** * The automation type */ // @ApiMember(Description="The automation type", ParameterType="query") public var automationType:String? /** * The object this automation applies to */ // @ApiMember(Description="The object this automation applies to", ParameterType="query") public var objectId:String? /** * The object name this automation applies to */ // @ApiMember(Description="The object name this automation applies to", ParameterType="query") public var objectName:String? /** * The Id of the object type that this automation applies to. */ // @ApiMember(Description="The Id of the object type that this automation applies to. ", ParameterType="query") public var rmsTableCtxIdObject:String? /** * The name of the object type that this automation applies to. */ // @ApiMember(Description="The name of the object type that this automation applies to.", ParameterType="query") public var rmsTableCtxName:String? /** * A guid list containing the selected system action Id's that trigger this automation. */ // @ApiMember(Description="A guid list containing the selected system action Id's that trigger this automation.", ParameterType="query") public var actionList:[String]? /** * A comma separated string of the selected system action names that trigger this automation. */ // @ApiMember(Description="A comma separated string of the selected system action names that trigger this automation.", ParameterType="query") public var actions:String? /** * Name of the automation. */ // @ApiMember(Description="Name of the automation.", ParameterType="query") public var name:String? /** * Description of the automation */ // @ApiMember(Description="Description of the automation", ParameterType="query") public var Description:String? /** * Owner Contact Id */ // @ApiMember(Description="Owner Contact Id", ParameterType="query") public var ownerContactId:String? /** * Record Status of the automation. */ // @ApiMember(Description="Record Status of the automation.", ParameterType="query") public var recordStatus:String? required public init(){} }