/* Options: Date: 2025-07-18 01:11:23 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: ListItemGetReq.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/faq/{ListId}/{Country}/{Code}") open class ListItemGetReq : IReturn { var listId:String? = null var country:String? = null var code:String? = null companion object { private val responseType = ListItem::class.java } override fun getResponseType(): Any? = ListItemGetReq.responseType } @Route(Path="/faq", Verbs="POST,PUT,DELETE") open class ListItem : Entity(), IReturn { var listId:String? = null var country:String? = null var relatedId:String? = null var code:String? = null var custom:String? = null companion object { private val responseType = ListItem::class.java } override fun getResponseType(): Any? = ListItem.responseType } open class Entity : IEntity { var id:String? = null } open class Entity { var logoUri:String? = null var name:String? = null var contactDetails:ContactDetails? = null }