/* Options: Date: 2025-12-06 12:17:26 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: IntroductionsDelete.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class IntroductionsDeleteResponse implements IConvertible { // @DataMember(Order=1) int? id; // @DataMember(Order=5) ResponseStatus? responseStatus; IntroductionsDeleteResponse({this.id,this.responseStatus}); IntroductionsDeleteResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'id': id, 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!) }; getTypeName() => "IntroductionsDeleteResponse"; TypeContext? context = _ctx; } // @Route("/introductions/{Id}", "DELETE") // @DataContract class IntroductionsDelete implements IReturn, IConvertible, IDelete { // @DataMember(Order=1) // @Validate(Validator="NotNull") int? id; IntroductionsDelete({this.id}); IntroductionsDelete.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; return this; } Map toJson() => { 'id': id }; createResponse() => IntroductionsDeleteResponse(); getResponseTypeName() => "IntroductionsDeleteResponse"; getTypeName() => "IntroductionsDelete"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'sfgboxapi.dev.scadsoftware.com', types: { 'IntroductionsDeleteResponse': TypeInfo(TypeOf.Class, create:() => IntroductionsDeleteResponse()), 'IntroductionsDelete': TypeInfo(TypeOf.Class, create:() => IntroductionsDelete()), });