/* Options: Date: 2025-12-06 08:53:11 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: BusinessCardCreditRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/v1/BusinessCard/Credit/{AgentId}/{CardQuantity}", Verbs="POST,OPTIONS") open class BusinessCardCreditRequest : IReturn { open var AgentId:Int? = null open var CardQuantity:Int? = null companion object { private val responseType = BusinessCardCreditResponse::class.java } override fun getResponseType(): Any? = BusinessCardCreditRequest.responseType } open class BusinessCardCreditResponse { open var ResponseStatus:ResponseStatus? = null open var Success:Boolean? = null }