' Options: 'Date: 2025-12-14 13:13:12 'Version: 6.110 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://auth.migrantleap.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: GetUsers.* '''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 MigrantLeap.Auth.v1.Models Namespace Global Namespace MigrantLeap.Auth.v1.Models Public Partial Class BaseResponse Public Overridable Property ResponseStatus As ResponseStatus End Class Public Partial Class GetUsers Implements IReturn(Of GetUsersResponse) End Class Public Partial Class GetUsersResponse Inherits BaseResponse Public Sub New() Users = New List(Of MUser) End Sub Public Overridable Property Users As List(Of MUser) End Class Public Partial Class MUser Public Overridable Property Id As String Public Overridable Property Email As String Public Overridable Property FirstName As String Public Overridable Property LastName As String Public Overridable Property Country As String Public Overridable Property Language As String Public Overridable Property BirthDate As String Public Overridable Property Address As String Public Overridable Property Address2 As String Public Overridable Property City As String Public Overridable Property State As String Public Overridable Property ZipCode As String Public Overridable Property PhoneNumber As String Public Overridable Property EmailConfirmed As Boolean Public Overridable Property HealthId As String Public Overridable Property MemberId As String Public Overridable Property Subscription As String End Class Public Partial Class ResponseStatus Implements IMeta Public Sub New() Errors = New List(Of ResponseError) Meta = New Dictionary(Of String, String) End Sub Public Overridable Property StatusCode As Integer Public Overridable Property Message As String Public Overridable Property StackTrace As String Public Overridable Property Errors As List(Of ResponseError) Public Overridable Property Meta As Dictionary(Of String, String) End Class End Namespace End Namespace