/* Options: Date: 2024-04-28 10:37:55 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteOrganization.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/orgs/{Id}", "DELETE") class DeleteOrganization implements IReturnVoid, IDelete, IConvertible { int? id; DeleteOrganization({this.id}); DeleteOrganization.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; return this; } Map toJson() => { 'id': id }; createResponse() {} getTypeName() => "DeleteOrganization"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'techstacks.io', types: { 'DeleteOrganization': TypeInfo(TypeOf.Class, create:() => DeleteOrganization()), });