' Options: 'Date: 2024-07-03 13:16:11 'Version: 8.23 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://api.bokamera.se ' '''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: ApiVersionCompabilityQuery.* '''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 System.IO Imports BokaMera.API.ServiceModel.Enums Imports BokaMera.API.ServiceModel.Dtos Namespace Global Namespace BokaMera.API.ServiceModel.Dtos Public Partial Class ApiVersionCompabilityQuery Implements IReturn(Of ApiVersionCompabilityQueryResponse) ''' '''The identifier for your application. ''' Public Overridable Property Identifier As VersionIdentifier ''' '''The version you are running and you want to check ''' Public Overridable Property Version As String End Class Public Partial Class ApiVersionCompabilityQueryResponse ''' '''The latest version number ''' Public Overridable Property CurrentVersion As String ''' '''Your version number ''' Public Overridable Property YourVersion As String ''' '''Any compatible error message ''' Public Overridable Property Message As String ''' '''If your version is compatible with the current version ''' Public Overridable Property Compatible As Boolean ''' '''If the changes are blocking for use and you need to upgrade to later version ''' Public Overridable Property BlockingChanges As Boolean Public Overridable Property ResponseStatus As ResponseStatus End Class End Namespace Namespace BokaMera.API.ServiceModel.Enums Public Enum VersionIdentifier BokaMeraiOS = 1 BokaMeraAdminiOS = 2 BokaMeraAndroid = 3 BokaMeraAdminAndroid = 4 End Enum End Namespace End Namespace