/* Options: Date: 2024-06-17 18:48:36 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetEAccountingDefaultArticlesQuery.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class ICompany { String? CompanyId; } // @Route("/eaccounting/defaultarticles", "GET") class GetEAccountingDefaultArticlesQuery implements IReturn>, ICompany, IConvertible, IGet { /** * E-Accounting settings company Id. */ // @ApiMember(Description="E-Accounting settings company Id.") String? CompanyId; GetEAccountingDefaultArticlesQuery({this.CompanyId}); GetEAccountingDefaultArticlesQuery.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; return this; } Map toJson() => { 'CompanyId': CompanyId }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetEAccountingDefaultArticlesQuery"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'ICompany': TypeInfo(TypeOf.Interface), 'GetEAccountingDefaultArticlesQuery': TypeInfo(TypeOf.Class, create:() => GetEAccountingDefaultArticlesQuery()), });