/* Options: Date: 2026-04-04 01:18:44 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteAutomation.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; /** * Delete an automation (Any type). */ // @Route("/automation/{AutomationId}", "DELETE") // @Api(Description="Delete an automation (Any type).") class DeleteAutomation implements IReturn, IConvertible, IDelete { /** * Id of the automation to be deleted. */ // @ApiMember(Description="Id of the automation to be deleted.", ParameterType="path") String? AutomationId; DeleteAutomation({this.AutomationId}); DeleteAutomation.fromJson(Map json) { fromMap(json); } fromMap(Map json) { AutomationId = json['AutomationId']; return this; } Map toJson() => { 'AutomationId': AutomationId }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "DeleteAutomation"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'pfapi.pstpf.com.au', types: { 'DeleteAutomation': TypeInfo(TypeOf.Class, create:() => DeleteAutomation()), });