/* Options: Date: 2024-07-03 13:09:31 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: QvicklyCheckoutIpnCallBack.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/payment/billmate/v1/ipncallback", Verbs="POST") open class QvicklyCheckoutIpnCallBack : 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 /** * The booking id. */ @ApiMember(Description="The booking id.") var BookingId:Int? = null /** * The payment credentials. */ @ApiMember(Description="The payment credentials.") var credentials:CredentialsResponse? = null /** * The payment ipn callback data. */ @ApiMember(Description="The payment ipn callback data.") @SerializedName("data") var Data:QvicklyIpnCallbackResponseData? = null companion object { private val responseType = IpnCallBackResponse::class.java } override fun getResponseType(): Any? = QvicklyCheckoutIpnCallBack.responseType } open class IpnCallBackResponse { var Message:String? = null var Success:Boolean? = null } open interface ICompany { var CompanyId:UUID? } open class CredentialsResponse { var hash:String? = null var id:String? = null var version:String? = null var client:String? = null var serverdata:ServerDataResponse? = null var time:String? = null var test:String? = null var language:String? = null } open class QvicklyIpnCallbackResponseData { var number:String? = null var status:String? = null var orderid:String? = null var url:String? = null } open class ServerDataResponse { var HTTP_HOST:String? = null var HTTP_CONNECTION:String? = null var HTTP_CACHE_CONTROL:String? = null var HTTP_ACCEPT:String? = null var HTTP_USER_AGENT:String? = null var HTTP_ACCEPT_ENCODING:String? = null var HTTP_ACCEPT_LANGUAGE:String? = null var PATH:String? = null var SERVER_SOFTWARE:String? = null var SERVER_NAME:String? = null var SERVER_ADDR:String? = null var SERVER_PORT:String? = null var REMOTE_ADDR:String? = null var REMOTE_PORT:String? = null var GATEWAY_INTERFACE:String? = null var SERVER_PROTOCOL:String? = null var REQUEST_METHOD:String? = null var QUERY_STRING:String? = null var REQUEST_TIME:String? = null }