' Options: 'Date: 2025-12-14 13:13:53 '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: UpdateHealthProfile.* '''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 HealthProfile Public Overridable Property HealthId As String Public Overridable Property FirstName As String Public Overridable Property LastName As String Public Overridable Property Email As String Public Overridable Property BirthDate As String Public Overridable Property Address As String Public Overridable Property Address2 As String Public Overridable Property State As String Public Overridable Property City As String Public Overridable Property ZipCode As String Public Overridable Property Phone 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 Public Partial Class UpdateHealthProfile Implements IReturn(Of UpdateHealthProfileResponse) Public Overridable Property Profile As HealthProfile Public Overridable Property Password As String End Class Public Partial Class UpdateHealthProfileResponse Inherits BaseResponse End Class End Namespace End Namespace