/* Options: Date: 2025-07-04 10:55:17 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetProjectMembersByGlobalID.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/global/projects/{GlobalID}/members", "GET") class GetProjectMembersByGlobalID implements IReturn>, IConvertible, IGet { String? GlobalID; GetProjectMembersByGlobalID({this.GlobalID}); GetProjectMembersByGlobalID.fromJson(Map json) { fromMap(json); } fromMap(Map json) { GlobalID = json['GlobalID']; return this; } Map toJson() => { 'GlobalID': GlobalID }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetProjectMembersByGlobalID"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'doapigw.baasbv.nl', types: { 'GetProjectMembersByGlobalID': TypeInfo(TypeOf.Class, create:() => GetProjectMembersByGlobalID()), });