' Options: 'Date: 2025-05-05 03:37:39 '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: ListConversations.* '''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.Messaging Namespace Global Namespace Voice.Api.Messaging Public Partial Class ConversationInfo Public Overridable Property Id As String Public Overridable Property EndpointId As String Public Overridable Property OtherAddress As String Public Overridable Property MostRecentMessage As MessageInfo End Class Public Partial Class ListConversations Implements IReturn(Of ListConversationsResponse) ''' '''The IDs of the account whose conversations you want to retrieve ''' Public Overridable Property AccountIds As List(Of String) ''' '''The list of endpoint IDs whose conversations you want to retrieve ''' Public Overridable Property EndpointIds As List(Of String) ''' '''The list of customer IDs whose conversations you want to retrieve ''' Public Overridable Property CustomerIds As List(Of String) ''' '''The start date for the conversations you want to retrieve ''' Public Overridable Property AfterDate As String End Class Public Partial Class ListConversationsResponse Public Overridable Property Conversations As List(Of ConversationInfo) End Class Public Partial Class MessageInfo Public Overridable Property Id As String Public Overridable Property AccountId As String Public Overridable Property CustomerId As String Public Overridable Property EndpointId As String Public Overridable Property EndpointDisplayName As String Public Overridable Property [Date] As String Public Overridable Property Direction As MessageDirections Public Overridable Property OtherAddress As String Public Overridable Property Sender As String Public Overridable Property Text As String Public Overridable Property IsUnread As Boolean End Class End Namespace End Namespace