/* Options: Date: 2026-04-04 03:11:15 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: DeleteAutomation.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Delete an automation (Any type). */ // @Route("/automation/{AutomationId}", "DELETE") // @Api(Description="Delete an automation (Any type).") public class DeleteAutomation : IReturn, Codable { public typealias Return = ResponseStatus /** * Id of the automation to be deleted. */ // @ApiMember(Description="Id of the automation to be deleted.", ParameterType="path") public var automationId:String? required public init(){} }