/* Options: Date: 2025-04-04 20:15:56 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetApiKeySuperAdminUser.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class ICompany { String? CompanyId; } class ApiKeySuperAdminResponse implements IConvertible { // @ApiMember(IsRequired=true) String? CompanyId; // @ApiMember(IsRequired=true) String? ApiKey; // @ApiMember(IsRequired=true) String? Notes; // @ApiMember(IsRequired=true) String? InternalNotes; ApiKeySuperAdminResponse({this.CompanyId,this.ApiKey,this.Notes,this.InternalNotes}); ApiKeySuperAdminResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; ApiKey = json['ApiKey']; Notes = json['Notes']; InternalNotes = json['InternalNotes']; return this; } Map toJson() => { 'CompanyId': CompanyId, 'ApiKey': ApiKey, 'Notes': Notes, 'InternalNotes': InternalNotes }; getTypeName() => "ApiKeySuperAdminResponse"; TypeContext? context = _ctx; } // @Route("/superadmin/apikey/{CompanyId}", "GET") // @ApiResponse(Description="", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) class GetApiKeySuperAdminUser implements IReturn, ICompany, IConvertible, IGet { /** * Enter the companyId for the customer */ // @ApiMember(Description="Enter the companyId for the customer", IsRequired=true, ParameterType="query") String? CompanyId; GetApiKeySuperAdminUser({this.CompanyId}); GetApiKeySuperAdminUser.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; return this; } Map toJson() => { 'CompanyId': CompanyId }; createResponse() => ApiKeySuperAdminResponse(); getResponseTypeName() => "ApiKeySuperAdminResponse"; getTypeName() => "GetApiKeySuperAdminUser"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.bokamera.se', types: { 'ICompany': TypeInfo(TypeOf.Interface), 'ApiKeySuperAdminResponse': TypeInfo(TypeOf.Class, create:() => ApiKeySuperAdminResponse()), 'GetApiKeySuperAdminUser': TypeInfo(TypeOf.Class, create:() => GetApiKeySuperAdminUser()), });