/* Options: Date: 2025-05-06 16:20:38 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: BorgunDeleteCardRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/CreditCards/Delete", Verbs="POST") open class BorgunDeleteCardRequest : IReturn { var phoneVerificationNumber:String? = null var deviceId:String? = null var virtualCardNumber:String? = null var token:String? = null companion object { private val responseType = BorgunDeleteCardResult::class.java } override fun getResponseType(): Any? = BorgunDeleteCardRequest.responseType } open class BorgunDeleteCardResult { var statusCode:Int? = null var message:String? = null }