/* Options: Date: 2024-07-03 14:33:48 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: TestQvicklyApiSettingsQuery.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class ICompany { String? CompanyId; } class QvicklyApiSettingsTestResponse implements IConvertible { /** * If the settings works or not */ // @ApiMember(Description="If the settings works or not") bool? Success; QvicklyApiSettingsTestResponse({this.Success}); QvicklyApiSettingsTestResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Success = json['Success']; return this; } Map toJson() => { 'Success': Success }; getTypeName() => "QvicklyApiSettingsTestResponse"; TypeContext? context = _ctx; } // @Route("/payment/billmate/apisettings/test", "POST") // @ValidateRequest(Validator="IsAuthenticated") class TestQvicklyApiSettingsQuery implements IReturn, ICompany, IConvertible, IPost { /** * 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 Qvickly Id */ // @ApiMember(Description="The Qvickly Id") int? Id; /** * The Qvickly secret */ // @ApiMember(Description="The Qvickly secret") String? Secret; /** * The Qvickly receiver email */ // @ApiMember(Description="The Qvickly receiver email") String? ReceiverEmail; /** * The Qvickly receiver firstname */ // @ApiMember(Description="The Qvickly receiver firstname") String? ReceiverFirstname; /** * The Qvickly receiver lastname */ // @ApiMember(Description="The Qvickly receiver lastname") String? ReceiverLastname; TestQvicklyApiSettingsQuery({this.CompanyId,this.Id,this.Secret,this.ReceiverEmail,this.ReceiverFirstname,this.ReceiverLastname}); TestQvicklyApiSettingsQuery.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; Id = json['Id']; Secret = json['Secret']; ReceiverEmail = json['ReceiverEmail']; ReceiverFirstname = json['ReceiverFirstname']; ReceiverLastname = json['ReceiverLastname']; return this; } Map toJson() => { 'CompanyId': CompanyId, 'Id': Id, 'Secret': Secret, 'ReceiverEmail': ReceiverEmail, 'ReceiverFirstname': ReceiverFirstname, 'ReceiverLastname': ReceiverLastname }; createResponse() => QvicklyApiSettingsTestResponse(); getResponseTypeName() => "QvicklyApiSettingsTestResponse"; getTypeName() => "TestQvicklyApiSettingsQuery"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.bokamera.se', types: { 'ICompany': TypeInfo(TypeOf.Interface), 'QvicklyApiSettingsTestResponse': TypeInfo(TypeOf.Class, create:() => QvicklyApiSettingsTestResponse()), 'TestQvicklyApiSettingsQuery': TypeInfo(TypeOf.Class, create:() => TestQvicklyApiSettingsQuery()), });