' Options:
'Date: 2025-05-05 00:29:59
'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: ExportPackage.*
'''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.Flows.Data
Imports Voice.Api.Endpoints
Imports Voice.Api.Settings
Imports Voice.Api.Flows
Namespace Global
Namespace Voice.Api.Endpoints
Public Enum EndpointTypes
PhoneNumber
User
FaxNumber
EmailAddress
Unused_1
Unused_2
Unused_3
Unused_4
Unused_5
Team
Assistant
End Enum
Public Enum UserDataFieldModes
Hidden
[ReadOnly]
ReadWrite
End Enum
End Namespace
Namespace Voice.Api.Flows
'''
'''Export the specified flows into a package
'''
Public Partial Class ExportPackage
Implements IReturn(Of PackageInfo)
'''
'''The ID of the account
'''
Public Overridable Property AccountId As String
'''
'''The IDs of the flows to export
'''
Public Overridable Property FlowIds As List(Of String)
'''
'''Include all custom fields
'''
Public Overridable Property IncludeAllCustomFields As Boolean
End Class
Public Partial Class FlowInfo
Inherits EntityInfo
'''
'''The name of this flow
'''
Public Overridable Property Name As String
'''
'''The roles that this flow has
'''
Public Overridable Property Roles As List(Of FlowRoles)
'''
'''What this flow does
'''
Public Overridable Property Description As String
'''
'''Any notes for this flow
'''
Public Overridable Property Notes As String
'''
'''The ID of the account associated with the flow
'''
Public Overridable Property AccountId As String
'''
'''The name of the account associated with the flow
'''
Public Overridable Property AccountName As String
'''
'''The ID of the customer this flow is associated with
'''
Public Overridable Property CustomerId As String
'''
'''The name of the customer this flow is associated with
'''
Public Overridable Property CustomerName As String
'''
'''The breadcrumb to the flow for this endpoint
'''
Public Overridable Property CustomerBreadcrumb As List(Of CustomerBreadcrumb)
'''
'''The nodes in this flow
'''
Public Overridable Property Nodes As List(Of FlowNode)
'''
'''The flow's parameters
'''
Public Overridable Property Parameters As List(Of FlowParameter)
'''
'''The flow's exits
'''
Public Overridable Property Exits As List(Of FlowExit)
'''
'''The UI data for the flow
'''
Public Overridable Property UI As FlowUI
'''
'''The list of tags for this flow
'''
Public Overridable Property Tags As List(Of Tag)
'''
'''The number of nodes in this flow
'''
Public Overridable Property NodeCount As Integer
End Class
Public Partial Class PackageInfo
Public Overridable Property Flows As List(Of FlowInfo)
Public Overridable Property CustomerFields As List(Of CustomerDataField)
Public Overridable Property EndpointFields As List(Of EndpointDataField)
Public Overridable Property SystemFields As List(Of SystemSettingsField)
End Class
End Namespace
Namespace Voice.Api.Flows.Data
Public Partial Class DataField
Public Overridable Property Id As String
Public Overridable Property Name As String
Public Overridable Property Type As ValueTypes
Public Overridable Property UIHint As UIHints
Public Overridable Property UITab As String
Public Overridable Property IsAsync As Boolean
Public Overridable Property DisableBinding As Boolean
Public Overridable Property StructType As DataType
Public Overridable Property ListType As DataType
Public Overridable Property Description As String
Public Overridable Property PossibleValues As List(Of String)
Public Overridable Property IsOutput As Boolean
Public Overridable Property CustomFieldValuesUrl As String
Public Overridable Property DefaultValue As Value
Public Overridable Property TransitionNameFormat As String
Public Overridable Property Uniqueness As DataFieldUniqueness
Public Overridable Property VoiceOnly As Boolean
Public Overridable Property ConditionalVisibilityField As String
Public Overridable Property ConditionalVisibilityValue As String
Public Overridable Property NoEvalTemplate As Boolean
Public Overridable Property UserMode As UserDataFieldModes
Public Overridable Property AnyValueType As Boolean
End Class
Public Enum DataFieldUniqueness
NotUnique
Unique
UniqueToCustomer
End Enum
Public Partial Class DataType
Public Overridable Property TypeName As String
Public Overridable Property Fields As List(Of DataField)
End Class
Public Partial Class Struct
Inherits Dictionary(Of String, Value)
End Class
Public Enum UIHints
None
LargeText
InlineForm
Password
InlineStruct
End Enum
Public Partial Class Value
Public Overridable Property BoolValue As Boolean?
Public Overridable Property StringValue As String
Public Overridable Property NumberValue As Double?
Public Overridable Property ListValue As List(Of Struct)
Public Overridable Property StructValue As Struct
End Class
Public Enum ValueTypes
NotSpecified
[String]
[Boolean]
Number
List
Struct
Transition
Custom
[Date]
AudioFile
TimeZoneId
PhoneNumber
User
Endpoint
Time
File
FaxNumber
EmailAccount
Customer
Flow
Team
FlowReference
Integration
Assistant
End Enum
End Namespace
Namespace Voice.Api.Settings
Public Partial Class CustomerDataField
Inherits DataField
Public Overridable Property ShowInSearch As Boolean
End Class
Public Partial Class EndpointDataField
Inherits DataField
Public Overridable Property ShowInSearch As Boolean
Public Overridable Property ShowInLists As Boolean
Public Overridable Property EndpointType As EndpointTypes?
Public Overridable Property IsCallerId As Boolean
Public Overridable Property IsKnob As Boolean
End Class
Public Partial Class SystemSettingsField
Inherits DataField
Public Overridable Property Value As Value
End Class
End Namespace
End Namespace