/* Options: Date: 2025-04-10 19:42:07 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: GetVossTiers.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class ICompany { String? CompanyId; } // @Route("/voss/tiers", "GET") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) class GetVossTiers implements IReturn>, ICompany, IConvertible, IGet { /** * The company id, if empty will use the company id for the user you are logged in with. */ // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") String? CompanyId; String? PackageId; GetVossTiers({this.CompanyId,this.PackageId}); GetVossTiers.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; PackageId = json['PackageId']; return this; } Map toJson() => { 'CompanyId': CompanyId, 'PackageId': PackageId }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetVossTiers"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'ICompany': TypeInfo(TypeOf.Interface), 'GetVossTiers': TypeInfo(TypeOf.Class, create:() => GetVossTiers()), });