' Options: 'Date: 2025-08-05 02:43:25 'Version: 8.0 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://www.asg.com.au/RestApi ' '''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: GetABTestsStatuses.* '''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.Globalization Imports Telerik.Sitefinity.ABTesting.Model Imports Telerik.Sitefinity.ABTesting.Services.Dto Imports Telerik.Sitefinity.ABTesting.Services.Dto.Request Namespace Global Namespace Telerik.Sitefinity.ABTesting.Model Public Enum ABTestStatus NotStarted Scheduled Active Stopped Ended End Enum End Namespace Namespace Telerik.Sitefinity.ABTesting.Services.Dto Public Interface IABTestsFilter Property SearchText As String Property Status As Nullable(Of ABTestStatus) Property MyTests As Boolean End Interface End Namespace Namespace Telerik.Sitefinity.ABTesting.Services.Dto.Request Public Partial Class GetABTestsStatuses Implements IReturn(Of List(Of ABTestsStatusViewModel)) Implements IABTestsFilter Public Overridable Property SearchText As String Public Overridable Property Status As Nullable(Of ABTestStatus) Public Overridable Property MyTests As Boolean End Class End Namespace End Namespace