/* Options: Date: 2026-08-17 09:23:50 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GiftCardRedeemRequest.* //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="/GiftCard/Redeem", Verbs="POST") open class GiftCardRedeemRequest : IReturn { var holdId:Int? = null var code:String? = null var amountMinor:Int? = null var eventId:Int? = null var targetOwnerId:Int? = null var orderPaymentReference:String? = null var idempotencyKey:String? = null companion object { private val responseType = GiftCardRedeemResult::class.java } override fun getResponseType(): Any? = GiftCardRedeemRequest.responseType } open class GiftCardRedeemResult { var ok:Boolean? = null var reason:String? = null var message:LocalizedMessage? = null var redeemedAmountMinor:Int? = null var newBalanceMinor:Int? = null var transactionId:Int? = null var settlementTag:String? = null var statusCode:Int? = null } open class LocalizedMessage { @SerializedName("is") var Is:String? = null var en:String? = null }