/* Options: Date: 2024-05-16 13:03:51 Version: 6.111 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetProject.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; import 'dart:collection'; class Project implements IConvertible { String? account; String? name; Project({this.account,this.name}); Project.fromJson(Map json) { fromMap(json); } fromMap(Map json) { account = json['account']; name = json['name']; return this; } Map toJson() => { 'account': account, 'name': name }; getTypeName() => "Project"; TypeContext? context = _ctx; } class GetProject implements IReturn, IConvertible, IPost { String? account; String? project; GetProject({this.account,this.project}); GetProject.fromJson(Map json) { fromMap(json); } fromMap(Map json) { account = json['account']; project = json['project']; return this; } Map toJson() => { 'account': account, 'project': project }; createResponse() => Project(); getResponseTypeName() => "Project"; getTypeName() => "GetProject"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'test.servicestack.net', types: { 'Project': TypeInfo(TypeOf.Class, create:() => Project()), 'GetProject': TypeInfo(TypeOf.Class, create:() => GetProject()), });