/* Options: Date: 2025-12-13 19:35:25 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RemoveOrganizationMember.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/orgs/{OrganizationId}/members/{UserId}", "DELETE") class RemoveOrganizationMember implements IReturnVoid, IDelete, IConvertible { int organizationId = 0; int userId = 0; RemoveOrganizationMember({this.organizationId,this.userId}); RemoveOrganizationMember.fromJson(Map json) { fromMap(json); } fromMap(Map json) { organizationId = json['organizationId']; userId = json['userId']; return this; } Map toJson() => { 'organizationId': organizationId, 'userId': userId }; createResponse() {} getTypeName() => "RemoveOrganizationMember"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'techstacks.io', types: { 'RemoveOrganizationMember': TypeInfo(TypeOf.Class, create:() => RemoveOrganizationMember()), });