' Options:
'Date: 2025-05-04 22:50:07
'Version: 8.71
'Tip: To override a DTO option, remove "''" prefix before updating
'BaseUrl: https://team.evovoice.io
'
'''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: UpdateUserInfo.*
'''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 Voice.Api.App
Namespace Global
Namespace Voice.Api.App
Public Partial Class AppUserInfo
'''
'''The user's first name
'''
Public Overridable Property FirstName As String
'''
'''The user's last name
'''
Public Overridable Property LastName As String
'''
'''Shortcut to the user's full name
'''
Public Overridable Property Name As String
'''
'''The URL to the user's avatar
'''
Public Overridable Property AvatarUrl As String
End Class
'''
'''Updates the user's info
'''
Public Partial Class UpdateUserInfo
Implements IReturn(Of AppUserInfo)
Implements IPatch
'''
'''The new first name
'''
Public Overridable Property FirstName As String
'''
'''The new last name
'''
Public Overridable Property LastName As String
End Class
End Namespace
End Namespace