/* Options: Date: 2025-12-06 05:17:55 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: AvailableGiftCardGameSetRequest.* //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/AvailableGiftCardGameSet", Verbs="GET,OPTIONS") open class AvailableGiftCardGameSetRequest : IReturn { companion object { private val responseType = GiftCardGameSetResponse::class.java } override fun getResponseType(): Any? = AvailableGiftCardGameSetRequest.responseType } open class GiftCardGameSetResponse { open var ResponseStatus:ResponseStatus? = null open var GiftCardGameSet:ArrayList = ArrayList() } open class GiftCardGameSet { open var GiftCardGameSetId:Int? = null open var AgentId:Int? = null open var AgentName:String? = null open var CreatedDate:Date? = null open var TrackingNumber:String? = null open var ShipDate:String? = null open var SerialNumber:String? = null }