(* Options: Date: 2025-05-04 23:11:57 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: UpdateUserInfo.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.App open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type AppUserInfo() = /// ///The user's first name /// [] member val FirstName:String = null with get,set /// ///The user's last name /// [] member val LastName:String = null with get,set /// ///Shortcut to the user's full name /// [] member val Name:String = null with get,set /// ///The URL to the user's avatar /// [] member val AvatarUrl:String = null with get,set /// ///Updates the user's info /// [] [] [] type UpdateUserInfo() = interface IReturn interface IPatch /// ///The new first name /// [] member val FirstName:String = null with get,set /// ///The new last name /// [] member val LastName:String = null with get,set