/* Options: Date: 2025-09-15 00:00:19 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: QvicklyApiSettingsQuery.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/payment/billmate/apisettings", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") open class QvicklyApiSettingsQuery : IReturn, ICompany { /** * 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.") override var CompanyId:UUID? = null companion object { private val responseType = QvicklyApiSettingsQueryResponse::class.java } override fun getResponseType(): Any? = QvicklyApiSettingsQuery.responseType } open class QvicklyApiSettingsQueryResponse { /** * The company id */ @ApiMember(Description="The company id") open var CompanyId:UUID? = null /** * The Qvickly id */ @ApiMember(Description="The Qvickly id") open var Id:Int? = null /** * The Qvickly secret */ @ApiMember(Description="The Qvickly secret") open var Secret:String? = null /** * The Qvickly receiver email */ @ApiMember(Description="The Qvickly receiver email") open var ReceiverEmail:String? = null /** * The Qvickly receiver firstname */ @ApiMember(Description="The Qvickly receiver firstname") open var ReceiverFirstname:String? = null /** * The Qvickly receiver lastname */ @ApiMember(Description="The Qvickly receiver lastname") open var ReceiverLastname:String? = null } interface ICompany { var CompanyId:UUID? }