/* Options: Date: 2026-08-17 08:20:35 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: GiftCardTypeCreateRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/GiftCardType", Verbs="POST") open class GiftCardTypeCreateRequest : IReturn { var item:GiftCardType? = null companion object { private val responseType = GiftCardTypeResult::class.java } override fun getResponseType(): Any? = GiftCardTypeCreateRequest.responseType } open class GiftCardTypeResult { var item:GiftCardType? = null var statusCode:Int? = null var message:String? = null } open class GiftCardType { var id:Int? = null var name:String? = null var scope:String? = null var ownerId:Int? = null var currency:String? = null var defaultExpiryMonths:Int? = null var isActive:Boolean? = null var createdAt:Date? = null }