/* Options: Date: 2025-07-17 21:20:53 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SectionContentItemReq.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/content/item/{Country}/{Lang}/{Section}") // @Route("/content/item/{Country}/{Lang}/{Section}/{ItemCode}") // @Route(Path="/content/item", Verbs="GET") open class SectionContentItemReq : IReturn { var country:String? = null var lang:String? = null var section:String? = null var itemId:String? = null var itemCode:String? = null companion object { private val responseType = Content::class.java } override fun getResponseType(): Any? = SectionContentItemReq.responseType } @Route(Path="/content", Verbs="POST,PUT") open class Content : Entity(), IReturn { var section:String? = null var itemId:String? = null var itemCode:String? = null var country:String? = null var lang:String? = null var app:String? = null var companyId:String? = null var company:String? = null var elements:HashMap = HashMap() companion object { private val responseType = Content::class.java } override fun getResponseType(): Any? = Content.responseType } open class Entity : IEntity { var id:String? = null } open class Entity { var logoUri:String? = null var name:String? = null var contactDetails:ContactDetails? = null }