/* Options: Date: 2024-04-29 15:09:01 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: 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; int? userId; 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()), });