/* Options: Date: 2024-06-16 18:05:51 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: PaysonCheckout1IPNCallBack.* //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/payson/v1/ipncallback", Verbs="POST") open class PaysonCheckout1IPNCallBack : 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 token. */ @ApiMember(Description="The payment token.") var Token:String? = null /** * The payment content. */ @ApiMember(Description="The payment content.") var Content:String? = null companion object { private val responseType = IpnCallBackResponse::class.java } override fun getResponseType(): Any? = PaysonCheckout1IPNCallBack.responseType } open class IpnCallBackResponse { var Message:String? = null var Success:Boolean? = null } open interface ICompany { var CompanyId:UUID? }