/* Options: Date: 2025-07-17 23:43:08 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: GetMemberRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/members/client/{ClientId}", Verbs="GET") open class GetMemberRequest : IReturn> { var clientId:Int? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = GetMemberRequest.responseType }