/* Options: Date: 2024-06-26 10:09:26 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: QvicklyApiSettingsQuery.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* 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.") 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") var CompanyId:UUID? = null /** * The Qvickly id */ @ApiMember(Description="The Qvickly id") var Id:Int? = null /** * The Qvickly secret */ @ApiMember(Description="The Qvickly secret") var Secret:String? = null /** * The Qvickly receiver email */ @ApiMember(Description="The Qvickly receiver email") var ReceiverEmail:String? = null /** * The Qvickly receiver firstname */ @ApiMember(Description="The Qvickly receiver firstname") var ReceiverFirstname:String? = null /** * The Qvickly receiver lastname */ @ApiMember(Description="The Qvickly receiver lastname") var ReceiverLastname:String? = null } open interface ICompany { var CompanyId:UUID? }