/* Options: Date: 2024-06-16 23:20:42 SwiftVersion: 5.0 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: TestQvicklyApiSettingsQuery.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/payment/billmate/apisettings/test", "POST") // @ValidateRequest(Validator="IsAuthenticated") public class TestQvicklyApiSettingsQuery : IReturn, ICompany, Codable { public typealias Return = QvicklyApiSettingsTestResponse /** * 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.") public var companyId:String? /** * The Qvickly Id */ // @ApiMember(Description="The Qvickly Id") public var id:Int /** * The Qvickly secret */ // @ApiMember(Description="The Qvickly secret") public var secret:String /** * The Qvickly receiver email */ // @ApiMember(Description="The Qvickly receiver email") public var receiverEmail:String /** * The Qvickly receiver firstname */ // @ApiMember(Description="The Qvickly receiver firstname") public var receiverFirstname:String /** * The Qvickly receiver lastname */ // @ApiMember(Description="The Qvickly receiver lastname") public var receiverLastname:String required public init(){} } public class QvicklyApiSettingsTestResponse : Codable { /** * If the settings works or not */ // @ApiMember(Description="If the settings works or not") public var success:Bool required public init(){} } public protocol ICompany { var companyId:String? { get set } }