Requires any of the roles: | SystemAdministrator, Manager, Customer |
GET | /packages |
---|
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
Imports Voice.Api
Imports Voice.Api.Customers
Imports Voice.Api.Flows.Data
Imports Voice.Api.Endpoints
Imports Voice.Api.Settings
Namespace Global
Namespace Voice.Api
Public Partial Class EntityInfo
'''<Summary>
'''The ID of the object
'''</Summary>
<ApiMember(Description:="The ID of the object")>
Public Overridable Property Id As String
'''<Summary>
'''The date the object was created
'''</Summary>
<ApiMember(Description:="The date the object was created")>
Public Overridable Property DateCreated As String
'''<Summary>
'''The date the object was last modified
'''</Summary>
<ApiMember(Description:="The date the object was last modified")>
Public Overridable Property DateLastModified As String
'''<Summary>
'''The user that created this object
'''</Summary>
<ApiMember(Description:="The user that created this object")>
Public Overridable Property CreatedBy As String
'''<Summary>
'''The user that last modified this object
'''</Summary>
<ApiMember(Description:="The user that last modified this object")>
Public Overridable Property LastModifiedBy As String
End Class
End Namespace
Namespace Voice.Api.Customers
Public Partial Class CustomerBreadcrumb
Public Overridable Property Id As String
Public Overridable Property Name As String
End Class
End Namespace
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
'''<Summary>
'''Export the specified flows into a package
'''</Summary>
<Api(Description:="Export the specified flows into a package")>
Public Partial Class ExportPackage
'''<Summary>
'''The ID of the account
'''</Summary>
<ApiMember(Description:="The ID of the account")>
Public Overridable Property AccountId As String
'''<Summary>
'''The IDs of the flows to export
'''</Summary>
<ApiMember(Description:="The IDs of the flows to export")>
Public Overridable Property FlowIds As List(Of String)
'''<Summary>
'''Include all custom fields
'''</Summary>
<ApiMember(Description:="Include all custom fields")>
Public Overridable Property IncludeAllCustomFields As Boolean
End Class
Public Enum FlowChannels
Voice
Chat
Fax
End Enum
Public Partial Class FlowExit
'''<Summary>
'''The unique ID for this exit
'''</Summary>
<ApiMember(Description:="The unique ID for this exit")>
Public Overridable Property Id As String
'''<Summary>
'''The name of this exit
'''</Summary>
<ApiMember(Description:="The name of this exit")>
Public Overridable Property Name As String
'''<Summary>
'''The UI for the exit
'''</Summary>
<ApiMember(Description:="The UI for the exit")>
Public Overridable Property UI As FlowNodeUI
End Class
Public Partial Class FlowInfo
Inherits EntityInfo
'''<Summary>
'''The name of this flow
'''</Summary>
<ApiMember(Description:="The name of this flow")>
Public Overridable Property Name As String
'''<Summary>
'''The roles that this flow has
'''</Summary>
<ApiMember(Description:="The roles that this flow has")>
Public Overridable Property Roles As List(Of FlowRoles)
'''<Summary>
'''What this flow does
'''</Summary>
<ApiMember(Description:="What this flow does")>
Public Overridable Property Description As String
'''<Summary>
'''Any notes for this flow
'''</Summary>
<ApiMember(Description:="Any notes for this flow")>
Public Overridable Property Notes As String
'''<Summary>
'''The ID of the account associated with the flow
'''</Summary>
<ApiMember(Description:="The ID of the account associated with the flow")>
Public Overridable Property AccountId As String
'''<Summary>
'''The name of the account associated with the flow
'''</Summary>
<ApiMember(Description:="The name of the account associated with the flow")>
Public Overridable Property AccountName As String
'''<Summary>
'''The ID of the customer this flow is associated with
'''</Summary>
<ApiMember(Description:="The ID of the customer this flow is associated with")>
Public Overridable Property CustomerId As String
'''<Summary>
'''The name of the customer this flow is associated with
'''</Summary>
<ApiMember(Description:="The name of the customer this flow is associated with")>
Public Overridable Property CustomerName As String
'''<Summary>
'''The breadcrumb to the flow for this endpoint
'''</Summary>
<ApiMember(Description:="The breadcrumb to the flow for this endpoint")>
Public Overridable Property CustomerBreadcrumb As List(Of CustomerBreadcrumb)
'''<Summary>
'''The nodes in this flow
'''</Summary>
<ApiMember(Description:="The nodes in this flow")>
Public Overridable Property Nodes As List(Of FlowNode)
'''<Summary>
'''The flow's parameters
'''</Summary>
<ApiMember(Description:="The flow's parameters")>
Public Overridable Property Parameters As List(Of FlowParameter)
'''<Summary>
'''The flow's exits
'''</Summary>
<ApiMember(Description:="The flow's exits")>
Public Overridable Property Exits As List(Of FlowExit)
'''<Summary>
'''The UI data for the flow
'''</Summary>
<ApiMember(Description:="The UI data for the flow")>
Public Overridable Property UI As FlowUI
'''<Summary>
'''The list of tags for this flow
'''</Summary>
<ApiMember(Description:="The list of tags for this flow")>
Public Overridable Property Tags As List(Of Tag)
'''<Summary>
'''The number of nodes in this flow
'''</Summary>
<ApiMember(Description:="The number of nodes in this flow")>
Public Overridable Property NodeCount As Integer
End Class
Public Partial Class FlowNode
'''<Summary>
'''The ID of this node. Must be unique within the flow but can be anything
'''</Summary>
<ApiMember(Description:="The ID of this node. Must be unique within the flow but can be anything")>
Public Overridable Property Id As String
'''<Summary>
'''Is this the starting node for the flow. Only one node can have this set
'''</Summary>
<ApiMember(Description:="Is this the starting node for the flow. Only one node can have this set")>
Public Overridable Property IsStartNode As Boolean
'''<Summary>
'''The name of the node, descriptive to be used as a reminder in the GUI
'''</Summary>
<ApiMember(Description:="The name of the node, descriptive to be used as a reminder in the GUI")>
Public Overridable Property Name As String
'''<Summary>
'''The specification for the node
'''</Summary>
<ApiMember(Description:="The specification for the node")>
Public Overridable Property Spec As FlowNodeSpec
'''<Summary>
'''The UI data for the node
'''</Summary>
<ApiMember(Description:="The UI data for the node")>
Public Overridable Property UI As FlowNodeUI
'''<Summary>
'''The data for this node. These will be POST'd to the endpoint when it is called.
'''</Summary>
<ApiMember(Description:="The data for this node. These will be POST'd to the endpoint when it is called.")>
Public Overridable Property Parameters As NodeParameterMap
End Class
Public Enum FlowNodeCategories
General
Voice
Logic
DateAndTime
Audio
Messaging
Assistant
Flows
Fax
Network
Cookies
CallCenter
Intelligence
End Enum
Public Partial Class FlowNodeSpec
'''<Summary>
'''The name of this node
'''</Summary>
<ApiMember(Description:="The name of this node")>
Public Overridable Property Name As String
'''<Summary>
'''A description of this node
'''</Summary>
<ApiMember(Description:="A description of this node")>
Public Overridable Property Description As String
'''<Summary>
'''Icon class for this node (FontAwesome)
'''</Summary>
<ApiMember(Description:="Icon class for this node (FontAwesome)")>
Public Overridable Property IconClass As String
'''<Summary>
'''The type name for this node
'''</Summary>
<ApiMember(Description:="The type name for this node")>
Public Overridable Property TypeName As String
'''<Summary>
'''The category this node should be grouped under
'''</Summary>
<ApiMember(Description:="The category this node should be grouped under")>
Public Overridable Property Category As FlowNodeCategories
'''<Summary>
'''The URL where this node is located
'''</Summary>
<ApiMember(Description:="The URL where this node is located")>
Public Overridable Property Url As String
'''<Summary>
'''The data type for this node
'''</Summary>
<ApiMember(Description:="The data type for this node")>
Public Overridable Property DataType As DataType
'''<Summary>
'''URL for documentation for this node
'''</Summary>
<ApiMember(Description:="URL for documentation for this node")>
Public Overridable Property DocumentationUrl As String
'''<Summary>
'''The channels that this node is restricted to
'''</Summary>
<ApiMember(Description:="The channels that this node is restricted to")>
Public Overridable Property RestrictToChannels As List(Of FlowChannels)
End Class
Public Partial Class FlowNodeUI
'''<Summary>
'''The X position of the node
'''</Summary>
<ApiMember(Description:="The X position of the node")>
Public Overridable Property X As Double
'''<Summary>
'''The Y position of the node
'''</Summary>
<ApiMember(Description:="The Y position of the node")>
Public Overridable Property Y As Double
'''<Summary>
'''Notes for this node
'''</Summary>
<ApiMember(Description:="Notes for this node")>
Public Overridable Property Notes As String
End Class
Public Partial Class FlowParameter
Inherits DataField
Public Overridable Property IsPublic As Boolean
Public Overridable Property IsKnob As Boolean
End Class
Public Enum FlowRoles
UI
Reference
PhoneNumberRouting
UserDialOut
FaxNumberRouting
End Enum
Public Partial Class FlowUI
Public Overridable Property SelectedNode As String
Public Overridable Property CanvasX As Double
Public Overridable Property CanvasY As Double
Public Overridable Property CanvasZoom As Double
End Class
Public Partial Class NodeParameter
Public Overridable Property Id As String
Public Overridable Property Type As ValueTypes
Public Overridable Property Source As ValueSources
Public Overridable Property IsAsync As Boolean
Public Overridable Property ReferenceId As String
Public Overridable Property Value As Value
Public Overridable Property NoEvalTemplate As Boolean
Public Overridable Property ListParameters As List(Of NodeParameterMap)
Public Overridable Property StructParameters As NodeParameterMap
Public Overridable Property IsOutput As Boolean
Public Overridable Property Expression As String
Public Overridable Property ListType As DataType
End Class
Public Partial Class NodeParameterMap
Inherits Dictionary(Of String, NodeParameter)
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 ValueSources
Value
Flow
System
Customer
Session
Endpoint
Expression
User
End Enum
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
Public Partial Class Tag
Public Overridable Property Id As String
Public Overridable Property Name As String
Public Overridable Property Color As TagColors
End Class
Public Enum TagColors
Magenta
Red
Volcano
Orange
Gold
Lime
Green
Cyan
Blue
GeekBlue
Purple
End Enum
End Namespace
End Namespace
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /packages HTTP/1.1 Host: team.evovoice.io Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <PackageInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows"> <CustomerFields xmlns:d2p1="http://schemas.datacontract.org/2004/07/Voice.Api.Settings"> <d2p1:CustomerDataField> <AnyValueType xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</AnyValueType> <ConditionalVisibilityField xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</ConditionalVisibilityField> <ConditionalVisibilityValue xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</ConditionalVisibilityValue> <CustomFieldValuesUrl xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</CustomFieldValuesUrl> <DefaultValue xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data"> <BoolValue>false</BoolValue> <ListValue xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" /> </ListValue> <NumberValue>0</NumberValue> <StringValue>String</StringValue> <StructValue xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" /> </DefaultValue> <Description xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</Description> <DisableBinding xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</DisableBinding> <Id xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</Id> <IsAsync xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</IsAsync> <IsOutput xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</IsOutput> <ListType i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data" /> <Name xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</Name> <NoEvalTemplate xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</NoEvalTemplate> <PossibleValues xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data"> <d4p1:string>String</d4p1:string> </PossibleValues> <StructType i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data" /> <TransitionNameFormat xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</TransitionNameFormat> <Type xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">NotSpecified</Type> <UIHint xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">None</UIHint> <UITab xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</UITab> <Uniqueness xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">NotUnique</Uniqueness> <UserMode xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">Hidden</UserMode> <VoiceOnly xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</VoiceOnly> <d2p1:ShowInSearch>false</d2p1:ShowInSearch> </d2p1:CustomerDataField> </CustomerFields> <EndpointFields xmlns:d2p1="http://schemas.datacontract.org/2004/07/Voice.Api.Settings"> <d2p1:EndpointDataField> <AnyValueType xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</AnyValueType> <ConditionalVisibilityField xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</ConditionalVisibilityField> <ConditionalVisibilityValue xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</ConditionalVisibilityValue> <CustomFieldValuesUrl xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</CustomFieldValuesUrl> <DefaultValue xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data"> <BoolValue>false</BoolValue> <ListValue xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" /> </ListValue> <NumberValue>0</NumberValue> <StringValue>String</StringValue> <StructValue xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" /> </DefaultValue> <Description xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</Description> <DisableBinding xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</DisableBinding> <Id xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</Id> <IsAsync xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</IsAsync> <IsOutput xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</IsOutput> <ListType i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data" /> <Name xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</Name> <NoEvalTemplate xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</NoEvalTemplate> <PossibleValues xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data"> <d4p1:string>String</d4p1:string> </PossibleValues> <StructType i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data" /> <TransitionNameFormat xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</TransitionNameFormat> <Type xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">NotSpecified</Type> <UIHint xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">None</UIHint> <UITab xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</UITab> <Uniqueness xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">NotUnique</Uniqueness> <UserMode xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">Hidden</UserMode> <VoiceOnly xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</VoiceOnly> <d2p1:EndpointType>PhoneNumber</d2p1:EndpointType> <d2p1:IsCallerId>false</d2p1:IsCallerId> <d2p1:IsKnob>false</d2p1:IsKnob> <d2p1:ShowInLists>false</d2p1:ShowInLists> <d2p1:ShowInSearch>false</d2p1:ShowInSearch> </d2p1:EndpointDataField> </EndpointFields> <Flows> <FlowInfo> <CreatedBy xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">String</CreatedBy> <DateCreated xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">String</DateCreated> <DateLastModified xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">String</DateLastModified> <Id xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">String</Id> <LastModifiedBy xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">String</LastModifiedBy> <AccountId>String</AccountId> <AccountName>String</AccountName> <CustomerBreadcrumb xmlns:d4p1="http://schemas.datacontract.org/2004/07/Voice.Api.Customers"> <d4p1:CustomerBreadcrumb> <d4p1:Id>String</d4p1:Id> <d4p1:Name>String</d4p1:Name> </d4p1:CustomerBreadcrumb> </CustomerBreadcrumb> <CustomerId>String</CustomerId> <CustomerName>String</CustomerName> <Description>String</Description> <Exits> <FlowExit> <Id>String</Id> <Name>String</Name> <UI> <Notes>String</Notes> <X>0</X> <Y>0</Y> </UI> </FlowExit> </Exits> <Name>String</Name> <NodeCount>0</NodeCount> <Nodes> <FlowNode> <Id>String</Id> <IsStartNode>false</IsStartNode> <Name>String</Name> <Parameters xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d6p1:KeyValueOfstringNodeParameteripFhVFNS> <d6p1:Key>String</d6p1:Key> <d6p1:Value i:nil="true" /> </d6p1:KeyValueOfstringNodeParameteripFhVFNS> </Parameters> <Spec> <Category>General</Category> <DataType xmlns:d7p1="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data" i:nil="true" /> <Description>String</Description> <DocumentationUrl>String</DocumentationUrl> <IconClass>String</IconClass> <Name>String</Name> <RestrictToChannels> <FlowChannels>Voice</FlowChannels> </RestrictToChannels> <TypeName>String</TypeName> <Url>String</Url> </Spec> <UI> <Notes>String</Notes> <X>0</X> <Y>0</Y> </UI> </FlowNode> </Nodes> <Notes>String</Notes> <Parameters> <FlowParameter> <AnyValueType xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</AnyValueType> <ConditionalVisibilityField xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</ConditionalVisibilityField> <ConditionalVisibilityValue xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</ConditionalVisibilityValue> <CustomFieldValuesUrl xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</CustomFieldValuesUrl> <DefaultValue xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data"> <BoolValue>false</BoolValue> <ListValue xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" /> </ListValue> <NumberValue>0</NumberValue> <StringValue>String</StringValue> <StructValue xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" /> </DefaultValue> <Description xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</Description> <DisableBinding xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</DisableBinding> <Id xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</Id> <IsAsync xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</IsAsync> <IsOutput xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</IsOutput> <ListType i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data" /> <Name xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</Name> <NoEvalTemplate xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</NoEvalTemplate> <PossibleValues xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data"> <d6p1:string>String</d6p1:string> </PossibleValues> <StructType i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data" /> <TransitionNameFormat xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</TransitionNameFormat> <Type xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">NotSpecified</Type> <UIHint xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">None</UIHint> <UITab xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</UITab> <Uniqueness xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">NotUnique</Uniqueness> <UserMode xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">Hidden</UserMode> <VoiceOnly xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</VoiceOnly> <IsKnob>false</IsKnob> <IsPublic>false</IsPublic> </FlowParameter> </Parameters> <Roles> <FlowRoles>UI</FlowRoles> </Roles> <Tags xmlns:d4p1="http://schemas.datacontract.org/2004/07/Voice.Api.Settings"> <d4p1:Tag> <d4p1:Color>Magenta</d4p1:Color> <d4p1:Id>String</d4p1:Id> <d4p1:Name>String</d4p1:Name> </d4p1:Tag> </Tags> <UI> <CanvasX>0</CanvasX> <CanvasY>0</CanvasY> <CanvasZoom>0</CanvasZoom> <SelectedNode>String</SelectedNode> </UI> </FlowInfo> </Flows> <SystemFields xmlns:d2p1="http://schemas.datacontract.org/2004/07/Voice.Api.Settings"> <d2p1:SystemSettingsField> <AnyValueType xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</AnyValueType> <ConditionalVisibilityField xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</ConditionalVisibilityField> <ConditionalVisibilityValue xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</ConditionalVisibilityValue> <CustomFieldValuesUrl xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</CustomFieldValuesUrl> <DefaultValue xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data"> <BoolValue>false</BoolValue> <ListValue xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" /> </ListValue> <NumberValue>0</NumberValue> <StringValue>String</StringValue> <StructValue xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" /> </DefaultValue> <Description xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</Description> <DisableBinding xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</DisableBinding> <Id xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</Id> <IsAsync xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</IsAsync> <IsOutput xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</IsOutput> <ListType i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data" /> <Name xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</Name> <NoEvalTemplate xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</NoEvalTemplate> <PossibleValues xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data"> <d4p1:string>String</d4p1:string> </PossibleValues> <StructType i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data" /> <TransitionNameFormat xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</TransitionNameFormat> <Type xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">NotSpecified</Type> <UIHint xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">None</UIHint> <UITab xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">String</UITab> <Uniqueness xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">NotUnique</Uniqueness> <UserMode xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">Hidden</UserMode> <VoiceOnly xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">false</VoiceOnly> <d2p1:Value xmlns:d4p1="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data"> <d4p1:BoolValue>false</d4p1:BoolValue> <d4p1:ListValue xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" /> </d4p1:ListValue> <d4p1:NumberValue>0</d4p1:NumberValue> <d4p1:StringValue>String</d4p1:StringValue> <d4p1:StructValue xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" /> </d2p1:Value> </d2p1:SystemSettingsField> </SystemFields> </PackageInfo>