' Options:
'Date: 2025-05-04 23:02:08
'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: AppGetFormCompletions.*
'''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
Imports Voice.Api.Portal
Namespace Global
Namespace Voice.Api
Public Partial Class ListRequest(Of T)
Implements IGet
'''
'''The page of data to retrieve
'''
Public Overridable Property Page As Integer
'''
'''If you want all objects to be returned. This should be used with care
'''
Public Overridable Property All As Boolean
'''
'''The number per page to retrieve
'''
Public Overridable Property CountPerPage As Integer
'''
'''Specific IDs
'''
Public Overridable Property SpecificIds As List(Of String)
'''
'''Specify a sort field
'''
Public Overridable Property SortField As String
'''
'''Specify a sort order
'''
Public Overridable Property SortOrder As SortOrders
'''
'''Disables total / page counts - improves performance. Returns only data. If there is no more data, Items will be empty array
'''
Public Overridable Property SimplifiedPaging As Boolean
End Class
Public Partial Class ListResponse(Of T)
'''
'''The items
'''
Public Overridable Property Items As List(Of HostedSuiteCompletedForm)
'''
'''The total number of items
'''
Public Overridable Property TotalCount As Integer
'''
'''The total number of pages
'''
Public Overridable Property TotalPages As Integer
'''
'''Are there more pages of items? Used with simplified paging
'''
Public Overridable Property HasMorePages As Boolean
End Class
Public Enum SortOrders
Ascend
Descend
End Enum
End Namespace
Namespace Voice.Api.Portal
Public Partial Class AppGetFormCompletions
Inherits ListRequest(Of HostedSuiteCompletedForm)
Implements IReturn(Of ListResponse(Of HostedSuiteCompletedForm))
Public Overridable Property AccountId As String
Public Overridable Property CustomerId As String
Public Overridable Property EmailSubjectFilter As String
End Class
Public Partial Class HostedSuiteCompletedForm
Public Overridable Property Id As String
Public Overridable Property Name As String
Public Overridable Property DateCreated As String
Public Overridable Property DateCompleted As String
Public Overridable Property FormId As String
Public Overridable Property FormName As String
Public Overridable Property ClientId As String
Public Overridable Property ClientName As String
Public Overridable Property ContactId As String
Public Overridable Property ContactName As String
Public Overridable Property ContactsIds As List(Of String)
Public Overridable Property ContactsNames As List(Of String)
Public Overridable Property EmailSubject As String
Public Overridable Property CallerNumber As String
Public Overridable Property Fields As List(Of HostedSuiteCompletedFormField)
End Class
Public Partial Class HostedSuiteCompletedFormField
Public Overridable Property Name As String
Public Overridable Property Values As List(Of String)
End Class
End Namespace
End Namespace