' Options: 'Date: 2025-05-12 18:29:37 'Version: 8.53 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://test.servicestack.net ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: HelloAllTypes.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports Test.ServiceModel Imports Test.ServiceModel.Types Namespace Global Namespace Test.ServiceModel Public Partial Class HelloAllTypes Implements IReturn(Of HelloAllTypesResponse) Public Overridable Property Name As String Public Overridable Property AllTypes As AllTypes Public Overridable Property AllCollectionTypes As AllCollectionTypes End Class Public Partial Class HelloAllTypesResponse Public Overridable Property Result As String Public Overridable Property AllTypes As AllTypes Public Overridable Property AllCollectionTypes As AllCollectionTypes End Class End Namespace Namespace Test.ServiceModel.Types Public Partial Class AllCollectionTypes Implements IReturn(Of AllCollectionTypes) Public Overridable Property IntArray As Integer() = New Integer(){} Public Overridable Property IntList As List(Of Integer) = New List(Of Integer) Public Overridable Property StringArray As String() = New String(){} Public Overridable Property StringList As List(Of String) = New List(Of String) Public Overridable Property FloatArray As Single() = New Single(){} Public Overridable Property DoubleList As List(Of Double) = New List(Of Double) Public Overridable Property ByteArray As Byte() = New Byte(){} Public Overridable Property CharArray As Char() = New Char(){} Public Overridable Property DecimalList As List(Of Decimal) = New List(Of Decimal) Public Overridable Property PocoArray As Poco() = New Poco(){} Public Overridable Property PocoList As List(Of Poco) = New List(Of Poco) Public Overridable Property PocoLookup As Dictionary(Of String, List(Of Poco)) = New Dictionary(Of String, List(Of Poco)) Public Overridable Property PocoLookupMap As Dictionary(Of String, List(Of Dictionary(Of String,Poco))) = New Dictionary(Of String, List(Of Dictionary(Of String,Poco))) End Class Public Partial Class AllTypes Implements IReturn(Of AllTypes) Public Overridable Property Id As Integer Public Overridable Property NullableId As Integer? Public Overridable Property [Byte] As Byte Public Overridable Property [Short] As Short Public Overridable Property Int As Integer Public Overridable Property [Long] As Long Public Overridable Property [UShort] As UInt16 Public Overridable Property UInt As UInt32 Public Overridable Property [ULong] As UInt64 Public Overridable Property Float As Single Public Overridable Property [Double] As Double Public Overridable Property [Decimal] As Decimal Public Overridable Property [String] As String Public Overridable Property DateTime As Date Public Overridable Property TimeSpan As TimeSpan Public Overridable Property DateTimeOffset As DateTimeOffset Public Overridable Property Guid As Guid Public Overridable Property [Char] As Char Public Overridable Property KeyValuePair As KeyValuePair(Of String, String) Public Overridable Property NullableDateTime As Date? Public Overridable Property NullableTimeSpan As TimeSpan? Public Overridable Property StringList As List(Of String) = New List(Of String) Public Overridable Property StringArray As String() = New String(){} Public Overridable Property StringMap As Dictionary(Of String, String) = New Dictionary(Of String, String) Public Overridable Property IntStringMap As Dictionary(Of Integer, String) = New Dictionary(Of Integer, String) Public Overridable Property SubType As SubType End Class End Namespace End Namespace