(* Options: Date: 2025-05-05 00:57:25 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: GetMyContacts.* //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 AppContactTypes = | User = 0 | Team = 1 | Contact = 2 [] type AppContact() = member val DisplayName:String = null with get,set member val Address:String = null with get,set member val Type:AppContactTypes = new AppContactTypes() with get,set member val CustomerName:String = null with get,set member val CanCall:Boolean = new Boolean() with get,set member val CanChat:Boolean = new Boolean() with get,set [] type GetMyContactsResponse() = member val Contacts:ResizeArray = null with get,set /// ///Gets the contacts associated with the authenticated user /// [] [] [] type GetMyContacts() = interface IReturn