/* Options: Date: 2024-06-26 09:24:34 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: GetCompanySuperAdminUser.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class ICompany { String? CompanyId; } // @Route("/superadmin/administrator/", "GET") // @ApiResponse(Description="", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) class GetCompanySuperAdminUser implements ICompany, IConvertible, IGet { /** * Enter the companyId for the customer */ // @ApiMember(Description="Enter the companyId for the customer", ParameterType="query") String? CompanyId; GetCompanySuperAdminUser({this.CompanyId}); GetCompanySuperAdminUser.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; return this; } Map toJson() => { 'CompanyId': CompanyId }; getTypeName() => "GetCompanySuperAdminUser"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'ICompany': TypeInfo(TypeOf.Interface), 'GetCompanySuperAdminUser': TypeInfo(TypeOf.Class, create:() => GetCompanySuperAdminUser()), });