' Options: 'Date: 2024-06-01 01:56:28 'Version: 6.40 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://evovoice.io ' '''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: ListConversations.* '''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 System.IO 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) Public Sub New() AccountIds = New List(Of String) EndpointIds = New List(Of String) CustomerIds = New List(Of String) End Sub ''' '''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 Sub New() Conversations = New List(Of ConversationInfo) End Sub 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