/* Options: Date: 2024-06-17 19:23:53 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: UpdateAxemaCodeLockSetting.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class ICompany { String? CompanyId; } class CodeLockAxemaSettingResponse implements IConvertible { String? CompanyId; /** * The api endpoint of the code lock */ // @ApiMember(DataType="string", Description="The api endpoint of the code lock") String? ApiEndpoint; /** * The api port for the code lock. */ // @ApiMember(DataType="string", Description="The api port for the code lock.") int? ApiPort; /** * The username to logon to the code lock. */ // @ApiMember(DataType="string", Description="The username to logon to the code lock.") String? Username; /** * The password to logon to the code lock. */ // @ApiMember(DataType="string", Description="The password to logon to the code lock.") String? Password; /** * When settings was created */ // @ApiMember(DataType="datetime", Description="When settings was created") DateTime? Created; /** * When settings was updated */ // @ApiMember(DataType="datetime", Description="When settings was updated") DateTime? Updated; CodeLockAxemaSettingResponse({this.CompanyId,this.ApiEndpoint,this.ApiPort,this.Username,this.Password,this.Created,this.Updated}); CodeLockAxemaSettingResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; ApiEndpoint = json['ApiEndpoint']; ApiPort = json['ApiPort']; Username = json['Username']; Password = json['Password']; Created = JsonConverters.fromJson(json['Created'],'DateTime',context!); Updated = JsonConverters.fromJson(json['Updated'],'DateTime',context!); return this; } Map toJson() => { 'CompanyId': CompanyId, 'ApiEndpoint': ApiEndpoint, 'ApiPort': ApiPort, 'Username': Username, 'Password': Password, 'Created': JsonConverters.toJson(Created,'DateTime',context!), 'Updated': JsonConverters.toJson(Updated,'DateTime',context!) }; getTypeName() => "CodeLockAxemaSettingResponse"; TypeContext? context = _ctx; } // @Route("/codelock/axema/settings", "PUT") // @ValidateRequest(Validator="IsAuthenticated") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ApiResponse(Description="You have too low privileges to call this service", StatusCode=403) class UpdateAxemaCodeLockSetting implements IReturn, ICompany, IConvertible, IPut { /** * 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; /** * The api endpoint of the code lock */ // @ApiMember(DataType="string", Description="The api endpoint of the code lock") String? ApiEndpoint; /** * The api port for the code lock. */ // @ApiMember(DataType="string", Description="The api port for the code lock.") String? ApiPort; /** * The username to logon to the code lock. */ // @ApiMember(DataType="string", Description="The username to logon to the code lock.") String? Username; /** * The password to logon to the code lock. */ // @ApiMember(DataType="string", Description="The password to logon to the code lock.") String? Password; UpdateAxemaCodeLockSetting({this.CompanyId,this.ApiEndpoint,this.ApiPort,this.Username,this.Password}); UpdateAxemaCodeLockSetting.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; ApiEndpoint = json['ApiEndpoint']; ApiPort = json['ApiPort']; Username = json['Username']; Password = json['Password']; return this; } Map toJson() => { 'CompanyId': CompanyId, 'ApiEndpoint': ApiEndpoint, 'ApiPort': ApiPort, 'Username': Username, 'Password': Password }; createResponse() => CodeLockAxemaSettingResponse(); getResponseTypeName() => "CodeLockAxemaSettingResponse"; getTypeName() => "UpdateAxemaCodeLockSetting"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'ICompany': TypeInfo(TypeOf.Interface), 'CodeLockAxemaSettingResponse': TypeInfo(TypeOf.Class, create:() => CodeLockAxemaSettingResponse()), 'UpdateAxemaCodeLockSetting': TypeInfo(TypeOf.Class, create:() => UpdateAxemaCodeLockSetting()), });