' Options: 'Date: 2024-11-21 07:54:16 'Version: 6.00 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://resourcelibrary.api.ashcompanies.com ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: ResourceLookAheadRequest.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.IO Imports ASH.ResourceLibrary.Interfaces.ServiceModels Imports ASH.ResourceLibrary.Interfaces.Models Namespace Global Namespace ASH.ResourceLibrary.Interfaces.Models Public Partial Class LookaheadResult Public Sub New() LookaheadTitles = New List(Of LookaheadTitle) LookaheadTags = New List(Of LookaheadTag) End Sub Public Overridable Property Id As String Public Overridable Property LookaheadTitles As List(Of LookaheadTitle) Public Overridable Property LookaheadTags As List(Of LookaheadTag) End Class Public Partial Class LookaheadTag Public Overridable Property Id As String Public Overridable Property Title As String End Class Public Partial Class LookaheadTitle Public Overridable Property Id As String Public Overridable Property Title As String Public Overridable Property Subtitle As String End Class End Namespace Namespace ASH.ResourceLibrary.Interfaces.ServiceModels Public Partial Class BasicResourceLibraryRequest Public Overridable Property ResourceLibraryMemberId As Integer End Class Public Partial Class ResourceLookAheadRequest Inherits BasicResourceLibraryRequest Implements IReturn(Of ResourceLookAheadResponse) Public Overridable Property Text As String ''' '''Set it to true if requesting resources only from digital library ''' Public Overridable Property DigitalFitness As Boolean ''' '''Set it to true if requesting resources only from health library ''' Public Overridable Property HealthLibrary As Boolean End Class Public Partial Class ResourceLookAheadResponse Public Overridable Property LookaheadResult As LookaheadResult End Class End Namespace End Namespace