/* Options: Date: 2024-11-21 03:27:37 Version: 6.00 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://resourcelibrary.api.ashcompanies.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ResourceLookAheadRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/lookaheadResults", Verbs="GET") open class ResourceLookAheadRequest : BasicResourceLibraryRequest(), IReturn { var text:String? = null /** * Set it to true if requesting resources only from digital library */ @ApiMember(Description="Set it to true if requesting resources only from digital library") var digitalFitness:Boolean? = null /** * Set it to true if requesting resources only from health library */ @ApiMember(Description="Set it to true if requesting resources only from health library") var healthLibrary:Boolean? = null companion object { private val responseType = ResourceLookAheadResponse::class.java } override fun getResponseType(): Any? = ResourceLookAheadRequest.responseType } open class ResourceLookAheadResponse { var lookaheadResult:LookaheadResult? = null } open class BasicResourceLibraryRequest { var resourceLibraryMemberId:Int? = null } open class LookaheadResult { var id:String? = null var lookaheadTitles:ArrayList = ArrayList() var lookaheadTags:ArrayList = ArrayList() } open class LookaheadTitle { var id:String? = null var title:String? = null var subtitle:String? = null } open class LookaheadTag { var id:String? = null var title:String? = null }