Evo Voice

<back to all web services

ListSettingsObjects

Get all configurable settings objects for the authenticated user

Requires Authentication
Required role:User
The following routes are available for this service:
GET/app/settings-objects
namespace Voice.Api.App

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    type SettingsObjectTypes =
        | Endpoint = 0
        | Customer = 1

    type EndpointTypes =
        | PhoneNumber = 0
        | User = 1
        | FaxNumber = 2
        | EmailAddress = 3
        | Unused_1 = 4
        | Unused_2 = 5
        | Unused_3 = 6
        | Unused_4 = 7
        | Unused_5 = 8
        | Team = 9

    type ValueTypes =
        | NotSpecified = 0
        | String = 1
        | Boolean = 2
        | Number = 3
        | List = 4
        | Struct = 5
        | Transition = 6
        | Custom = 7
        | Date = 8
        | AudioFile = 9
        | TimeZoneId = 10
        | PhoneNumber = 11
        | User = 12
        | Endpoint = 13
        | Time = 14
        | File = 15
        | FaxNumber = 16
        | EmailAccount = 17
        | Customer = 18
        | Flow = 19
        | Team = 20
        | FlowReference = 21
        | Integration = 22

    [<AllowNullLiteral>]
    type Struct() = 
        inherit Dictionary<String, Value>()

    [<AllowNullLiteral>]
    type Value() = 
        member val BoolValue:Nullable<Boolean> = new Nullable<Boolean>() with get,set
        member val StringValue:String = null with get,set
        member val NumberValue:Nullable<Double> = new Nullable<Double>() with get,set
        member val ListValue:ResizeArray<Struct> = new ResizeArray<Struct>() with get,set
        member val StructValue:Struct = null with get,set

    [<AllowNullLiteral>]
    type SettingsPossibleValue() = 
        member val DisplayName:String = null with get,set
        member val Value:Value = null with get,set

    type UIHints =
        | None = 0
        | LargeText = 1
        | InlineForm = 2
        | Password = 3
        | InlineStruct = 4

    [<AllowNullLiteral>]
    type DataType() = 
        member val TypeName:String = null with get,set
        member val Fields:ResizeArray<DataField> = new ResizeArray<DataField>() with get,set

    type DataFieldUniqueness =
        | NotUnique = 0
        | Unique = 1
        | UniqueToCustomer = 2

    type UserDataFieldModes =
        | Hidden = 0
        | ReadOnly = 1
        | ReadWrite = 2

    [<AllowNullLiteral>]
    type DataField() = 
        member val Id:String = null with get,set
        member val Name:String = null with get,set
        member val Type:ValueTypes = new ValueTypes() with get,set
        member val UIHint:UIHints = new UIHints() with get,set
        member val UITab:String = null with get,set
        member val IsAsync:Boolean = new Boolean() with get,set
        member val DisableBinding:Boolean = new Boolean() with get,set
        member val StructType:DataType = null with get,set
        member val ListType:DataType = null with get,set
        member val Description:String = null with get,set
        member val PossibleValues:ResizeArray<String> = new ResizeArray<String>() with get,set
        member val IsOutput:Boolean = new Boolean() with get,set
        member val CustomFieldValuesUrl:String = null with get,set
        member val DefaultValue:Value = null with get,set
        member val TransitionNameFormat:String = null with get,set
        member val Uniqueness:DataFieldUniqueness = new DataFieldUniqueness() with get,set
        member val VoiceOnly:Boolean = new Boolean() with get,set
        member val ConditionalVisibilityField:String = null with get,set
        member val ConditionalVisibilityValue:String = null with get,set
        member val NoEvalTemplate:Boolean = new Boolean() with get,set
        member val UserMode:UserDataFieldModes = new UserDataFieldModes() with get,set
        member val AnyValueType:Boolean = new Boolean() with get,set

    [<AllowNullLiteral>]
    type SettingsField() = 
        member val Name:String = null with get,set
        member val DisplayName:String = null with get,set
        member val Type:ValueTypes = new ValueTypes() with get,set
        member val Value:Value = null with get,set
        member val ReadOnly:Boolean = new Boolean() with get,set
        member val PossibleValues:ResizeArray<SettingsPossibleValue> = new ResizeArray<SettingsPossibleValue>() with get,set
        member val DataField:DataField = null with get,set

    [<AllowNullLiteral>]
    type SettingsObject() = 
        member val Id:String = null with get,set
        member val Name:String = null with get,set
        member val Description:String = null with get,set
        member val ReadOnly:Boolean = new Boolean() with get,set
        member val Type:SettingsObjectTypes = new SettingsObjectTypes() with get,set
        member val EndpointType:Nullable<EndpointTypes> = new Nullable<EndpointTypes>() with get,set
        member val Fields:ResizeArray<SettingsField> = new ResizeArray<SettingsField>() with get,set

    [<AllowNullLiteral>]
    type ListSettingsObjectsResponse() = 
        member val SettingsObjects:ResizeArray<SettingsObject> = new ResizeArray<SettingsObject>() with get,set

    ///<summary>
    ///Get all configurable settings objects for the authenticated user
    ///</summary>
    [<Api(Description="Get all configurable settings objects for the authenticated user")>]
    [<AllowNullLiteral>]
    type ListSettingsObjects() = 
        interface IGet

F# ListSettingsObjects DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /app/settings-objects HTTP/1.1 
Host: evovoice.io 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<ListSettingsObjectsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.App">
  <SettingsObjects>
    <SettingsObject>
      <Description>String</Description>
      <EndpointType>PhoneNumber</EndpointType>
      <Fields>
        <SettingsField>
          <DataField xmlns:d6p1="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">
            <d6p1:AnyValueType>false</d6p1:AnyValueType>
            <d6p1:ConditionalVisibilityField>String</d6p1:ConditionalVisibilityField>
            <d6p1:ConditionalVisibilityValue>String</d6p1:ConditionalVisibilityValue>
            <d6p1:CustomFieldValuesUrl>String</d6p1:CustomFieldValuesUrl>
            <d6p1:DefaultValue>
              <d6p1:BoolValue>false</d6p1:BoolValue>
              <d6p1:ListValue xmlns:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                <d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                  <d8p1:KeyValueOfstringValue8Ahp2kgT>
                    <d8p1:Key>String</d8p1:Key>
                    <d8p1:Value>
                      <d6p1:BoolValue>false</d6p1:BoolValue>
                      <d6p1:ListValue>
                        <d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          <d8p1:KeyValueOfstringValue8Ahp2kgT>
                            <d8p1:Key>String</d8p1:Key>
                            <d8p1:Value>
                              <d6p1:BoolValue>false</d6p1:BoolValue>
                              <d6p1:ListValue>
                                <d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  <d8p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d8p1:Key>String</d8p1:Key>
                                    <d8p1:Value i:nil="true" />
                                  </d8p1:KeyValueOfstringValue8Ahp2kgT>
                                </d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              </d6p1:ListValue>
                              <d6p1:NumberValue>0</d6p1:NumberValue>
                              <d6p1:StringValue>String</d6p1:StringValue>
                              <d6p1:StructValue>
                                <d8p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d8p1:Key>String</d8p1:Key>
                                  <d8p1:Value i:nil="true" />
                                </d8p1:KeyValueOfstringValue8Ahp2kgT>
                              </d6p1:StructValue>
                            </d8p1:Value>
                          </d8p1:KeyValueOfstringValue8Ahp2kgT>
                        </d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      </d6p1:ListValue>
                      <d6p1:NumberValue>0</d6p1:NumberValue>
                      <d6p1:StringValue>String</d6p1:StringValue>
                      <d6p1:StructValue>
                        <d8p1:KeyValueOfstringValue8Ahp2kgT>
                          <d8p1:Key>String</d8p1:Key>
                          <d8p1:Value>
                            <d6p1:BoolValue>false</d6p1:BoolValue>
                            <d6p1:ListValue>
                              <d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d8p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d8p1:Key>String</d8p1:Key>
                                  <d8p1:Value i:nil="true" />
                                </d8p1:KeyValueOfstringValue8Ahp2kgT>
                              </d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d6p1:ListValue>
                            <d6p1:NumberValue>0</d6p1:NumberValue>
                            <d6p1:StringValue>String</d6p1:StringValue>
                            <d6p1:StructValue>
                              <d8p1:KeyValueOfstringValue8Ahp2kgT>
                                <d8p1:Key>String</d8p1:Key>
                                <d8p1:Value i:nil="true" />
                              </d8p1:KeyValueOfstringValue8Ahp2kgT>
                            </d6p1:StructValue>
                          </d8p1:Value>
                        </d8p1:KeyValueOfstringValue8Ahp2kgT>
                      </d6p1:StructValue>
                    </d8p1:Value>
                  </d8p1:KeyValueOfstringValue8Ahp2kgT>
                </d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
              </d6p1:ListValue>
              <d6p1:NumberValue>0</d6p1:NumberValue>
              <d6p1:StringValue>String</d6p1:StringValue>
              <d6p1:StructValue xmlns:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                <d8p1:KeyValueOfstringValue8Ahp2kgT>
                  <d8p1:Key>String</d8p1:Key>
                  <d8p1:Value>
                    <d6p1:BoolValue>false</d6p1:BoolValue>
                    <d6p1:ListValue>
                      <d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        <d8p1:KeyValueOfstringValue8Ahp2kgT>
                          <d8p1:Key>String</d8p1:Key>
                          <d8p1:Value>
                            <d6p1:BoolValue>false</d6p1:BoolValue>
                            <d6p1:ListValue>
                              <d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d8p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d8p1:Key>String</d8p1:Key>
                                  <d8p1:Value i:nil="true" />
                                </d8p1:KeyValueOfstringValue8Ahp2kgT>
                              </d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d6p1:ListValue>
                            <d6p1:NumberValue>0</d6p1:NumberValue>
                            <d6p1:StringValue>String</d6p1:StringValue>
                            <d6p1:StructValue>
                              <d8p1:KeyValueOfstringValue8Ahp2kgT>
                                <d8p1:Key>String</d8p1:Key>
                                <d8p1:Value i:nil="true" />
                              </d8p1:KeyValueOfstringValue8Ahp2kgT>
                            </d6p1:StructValue>
                          </d8p1:Value>
                        </d8p1:KeyValueOfstringValue8Ahp2kgT>
                      </d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    </d6p1:ListValue>
                    <d6p1:NumberValue>0</d6p1:NumberValue>
                    <d6p1:StringValue>String</d6p1:StringValue>
                    <d6p1:StructValue>
                      <d8p1:KeyValueOfstringValue8Ahp2kgT>
                        <d8p1:Key>String</d8p1:Key>
                        <d8p1:Value>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue>
                            <d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d8p1:KeyValueOfstringValue8Ahp2kgT>
                                <d8p1:Key>String</d8p1:Key>
                                <d8p1:Value i:nil="true" />
                              </d8p1:KeyValueOfstringValue8Ahp2kgT>
                            </d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue>
                            <d8p1:KeyValueOfstringValue8Ahp2kgT>
                              <d8p1:Key>String</d8p1:Key>
                              <d8p1:Value i:nil="true" />
                            </d8p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d8p1:Value>
                      </d8p1:KeyValueOfstringValue8Ahp2kgT>
                    </d6p1:StructValue>
                  </d8p1:Value>
                </d8p1:KeyValueOfstringValue8Ahp2kgT>
              </d6p1:StructValue>
            </d6p1:DefaultValue>
            <d6p1:Description>String</d6p1:Description>
            <d6p1:DisableBinding>false</d6p1:DisableBinding>
            <d6p1:Id>String</d6p1:Id>
            <d6p1:IsAsync>false</d6p1:IsAsync>
            <d6p1:IsOutput>false</d6p1:IsOutput>
            <d6p1:ListType>
              <d6p1:Fields>
                <d6p1:DataField>
                  <d6p1:AnyValueType>false</d6p1:AnyValueType>
                  <d6p1:ConditionalVisibilityField>String</d6p1:ConditionalVisibilityField>
                  <d6p1:ConditionalVisibilityValue>String</d6p1:ConditionalVisibilityValue>
                  <d6p1:CustomFieldValuesUrl>String</d6p1:CustomFieldValuesUrl>
                  <d6p1:DefaultValue>
                    <d6p1:BoolValue>false</d6p1:BoolValue>
                    <d6p1:ListValue xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        <d11p1:KeyValueOfstringValue8Ahp2kgT>
                          <d11p1:Key>String</d11p1:Key>
                          <d11p1:Value>
                            <d6p1:BoolValue>false</d6p1:BoolValue>
                            <d6p1:ListValue>
                              <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d11p1:Key>String</d11p1:Key>
                                  <d11p1:Value>
                                    <d6p1:BoolValue>false</d6p1:BoolValue>
                                    <d6p1:ListValue>
                                      <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d11p1:Key>String</d11p1:Key>
                                          <d11p1:Value i:nil="true" />
                                        </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    </d6p1:ListValue>
                                    <d6p1:NumberValue>0</d6p1:NumberValue>
                                    <d6p1:StringValue>String</d6p1:StringValue>
                                    <d6p1:StructValue>
                                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:Key>String</d11p1:Key>
                                        <d11p1:Value i:nil="true" />
                                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d6p1:StructValue>
                                  </d11p1:Value>
                                </d11p1:KeyValueOfstringValue8Ahp2kgT>
                              </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d6p1:ListValue>
                            <d6p1:NumberValue>0</d6p1:NumberValue>
                            <d6p1:StringValue>String</d6p1:StringValue>
                            <d6p1:StructValue>
                              <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                <d11p1:Key>String</d11p1:Key>
                                <d11p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:Key>String</d11p1:Key>
                                        <d11p1:Value i:nil="true" />
                                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:Key>String</d11p1:Key>
                                      <d11p1:Value i:nil="true" />
                                    </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d11p1:Value>
                              </d11p1:KeyValueOfstringValue8Ahp2kgT>
                            </d6p1:StructValue>
                          </d11p1:Value>
                        </d11p1:KeyValueOfstringValue8Ahp2kgT>
                      </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    </d6p1:ListValue>
                    <d6p1:NumberValue>0</d6p1:NumberValue>
                    <d6p1:StringValue>String</d6p1:StringValue>
                    <d6p1:StructValue xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                        <d11p1:Key>String</d11p1:Key>
                        <d11p1:Value>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue>
                            <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                <d11p1:Key>String</d11p1:Key>
                                <d11p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:Key>String</d11p1:Key>
                                        <d11p1:Value i:nil="true" />
                                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:Key>String</d11p1:Key>
                                      <d11p1:Value i:nil="true" />
                                    </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d11p1:Value>
                              </d11p1:KeyValueOfstringValue8Ahp2kgT>
                            </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue>
                            <d11p1:KeyValueOfstringValue8Ahp2kgT>
                              <d11p1:Key>String</d11p1:Key>
                              <d11p1:Value>
                                <d6p1:BoolValue>false</d6p1:BoolValue>
                                <d6p1:ListValue>
                                  <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:Key>String</d11p1:Key>
                                      <d11p1:Value i:nil="true" />
                                    </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d6p1:ListValue>
                                <d6p1:NumberValue>0</d6p1:NumberValue>
                                <d6p1:StringValue>String</d6p1:StringValue>
                                <d6p1:StructValue>
                                  <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d11p1:Key>String</d11p1:Key>
                                    <d11p1:Value i:nil="true" />
                                  </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                </d6p1:StructValue>
                              </d11p1:Value>
                            </d11p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d11p1:Value>
                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                    </d6p1:StructValue>
                  </d6p1:DefaultValue>
                  <d6p1:Description>String</d6p1:Description>
                  <d6p1:DisableBinding>false</d6p1:DisableBinding>
                  <d6p1:Id>String</d6p1:Id>
                  <d6p1:IsAsync>false</d6p1:IsAsync>
                  <d6p1:IsOutput>false</d6p1:IsOutput>
                  <d6p1:ListType>
                    <d6p1:Fields>
                      <d6p1:DataField>
                        <d6p1:AnyValueType>false</d6p1:AnyValueType>
                        <d6p1:ConditionalVisibilityField>String</d6p1:ConditionalVisibilityField>
                        <d6p1:ConditionalVisibilityValue>String</d6p1:ConditionalVisibilityValue>
                        <d6p1:CustomFieldValuesUrl>String</d6p1:CustomFieldValuesUrl>
                        <d6p1:DefaultValue>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                <d14p1:Key>String</d14p1:Key>
                                <d14p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d14p1:Key>String</d14p1:Key>
                                        <d14p1:Value>
                                          <d6p1:BoolValue>false</d6p1:BoolValue>
                                          <d6p1:ListValue>
                                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                                <d14p1:Key>String</d14p1:Key>
                                                <d14p1:Value i:nil="true" />
                                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:ListValue>
                                          <d6p1:NumberValue>0</d6p1:NumberValue>
                                          <d6p1:StringValue>String</d6p1:StringValue>
                                          <d6p1:StructValue>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:StructValue>
                                        </d14p1:Value>
                                      </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d14p1:Value>
                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                              <d14p1:Key>String</d14p1:Key>
                              <d14p1:Value>
                                <d6p1:BoolValue>false</d6p1:BoolValue>
                                <d6p1:ListValue>
                                  <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d6p1:ListValue>
                                <d6p1:NumberValue>0</d6p1:NumberValue>
                                <d6p1:StringValue>String</d6p1:StringValue>
                                <d6p1:StructValue>
                                  <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:Key>String</d14p1:Key>
                                    <d14p1:Value>
                                      <d6p1:BoolValue>false</d6p1:BoolValue>
                                      <d6p1:ListValue>
                                        <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:ListValue>
                                      <d6p1:NumberValue>0</d6p1:NumberValue>
                                      <d6p1:StringValue>String</d6p1:StringValue>
                                      <d6p1:StructValue>
                                        <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:Key>String</d14p1:Key>
                                          <d14p1:Value i:nil="true" />
                                        </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:StructValue>
                                    </d14p1:Value>
                                  </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                </d6p1:StructValue>
                              </d14p1:Value>
                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d6p1:DefaultValue>
                        <d6p1:Description>String</d6p1:Description>
                        <d6p1:DisableBinding>false</d6p1:DisableBinding>
                        <d6p1:Id>String</d6p1:Id>
                        <d6p1:IsAsync>false</d6p1:IsAsync>
                        <d6p1:IsOutput>false</d6p1:IsOutput>
                        <d6p1:ListType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:ListType>
                        <d6p1:Name>String</d6p1:Name>
                        <d6p1:NoEvalTemplate>false</d6p1:NoEvalTemplate>
                        <d6p1:PossibleValues xmlns:d13p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                          <d13p1:string>String</d13p1:string>
                        </d6p1:PossibleValues>
                        <d6p1:StructType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:StructType>
                        <d6p1:TransitionNameFormat>String</d6p1:TransitionNameFormat>
                        <d6p1:Type>NotSpecified</d6p1:Type>
                        <d6p1:UIHint>None</d6p1:UIHint>
                        <d6p1:UITab>String</d6p1:UITab>
                        <d6p1:Uniqueness>NotUnique</d6p1:Uniqueness>
                        <d6p1:UserMode>Hidden</d6p1:UserMode>
                        <d6p1:VoiceOnly>false</d6p1:VoiceOnly>
                      </d6p1:DataField>
                    </d6p1:Fields>
                    <d6p1:TypeName>String</d6p1:TypeName>
                  </d6p1:ListType>
                  <d6p1:Name>String</d6p1:Name>
                  <d6p1:NoEvalTemplate>false</d6p1:NoEvalTemplate>
                  <d6p1:PossibleValues xmlns:d10p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                    <d10p1:string>String</d10p1:string>
                  </d6p1:PossibleValues>
                  <d6p1:StructType>
                    <d6p1:Fields>
                      <d6p1:DataField>
                        <d6p1:AnyValueType>false</d6p1:AnyValueType>
                        <d6p1:ConditionalVisibilityField>String</d6p1:ConditionalVisibilityField>
                        <d6p1:ConditionalVisibilityValue>String</d6p1:ConditionalVisibilityValue>
                        <d6p1:CustomFieldValuesUrl>String</d6p1:CustomFieldValuesUrl>
                        <d6p1:DefaultValue>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                <d14p1:Key>String</d14p1:Key>
                                <d14p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d14p1:Key>String</d14p1:Key>
                                        <d14p1:Value>
                                          <d6p1:BoolValue>false</d6p1:BoolValue>
                                          <d6p1:ListValue>
                                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                                <d14p1:Key>String</d14p1:Key>
                                                <d14p1:Value i:nil="true" />
                                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:ListValue>
                                          <d6p1:NumberValue>0</d6p1:NumberValue>
                                          <d6p1:StringValue>String</d6p1:StringValue>
                                          <d6p1:StructValue>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:StructValue>
                                        </d14p1:Value>
                                      </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d14p1:Value>
                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                              <d14p1:Key>String</d14p1:Key>
                              <d14p1:Value>
                                <d6p1:BoolValue>false</d6p1:BoolValue>
                                <d6p1:ListValue>
                                  <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d6p1:ListValue>
                                <d6p1:NumberValue>0</d6p1:NumberValue>
                                <d6p1:StringValue>String</d6p1:StringValue>
                                <d6p1:StructValue>
                                  <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:Key>String</d14p1:Key>
                                    <d14p1:Value>
                                      <d6p1:BoolValue>false</d6p1:BoolValue>
                                      <d6p1:ListValue>
                                        <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:ListValue>
                                      <d6p1:NumberValue>0</d6p1:NumberValue>
                                      <d6p1:StringValue>String</d6p1:StringValue>
                                      <d6p1:StructValue>
                                        <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:Key>String</d14p1:Key>
                                          <d14p1:Value i:nil="true" />
                                        </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:StructValue>
                                    </d14p1:Value>
                                  </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                </d6p1:StructValue>
                              </d14p1:Value>
                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d6p1:DefaultValue>
                        <d6p1:Description>String</d6p1:Description>
                        <d6p1:DisableBinding>false</d6p1:DisableBinding>
                        <d6p1:Id>String</d6p1:Id>
                        <d6p1:IsAsync>false</d6p1:IsAsync>
                        <d6p1:IsOutput>false</d6p1:IsOutput>
                        <d6p1:ListType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:ListType>
                        <d6p1:Name>String</d6p1:Name>
                        <d6p1:NoEvalTemplate>false</d6p1:NoEvalTemplate>
                        <d6p1:PossibleValues xmlns:d13p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                          <d13p1:string>String</d13p1:string>
                        </d6p1:PossibleValues>
                        <d6p1:StructType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:StructType>
                        <d6p1:TransitionNameFormat>String</d6p1:TransitionNameFormat>
                        <d6p1:Type>NotSpecified</d6p1:Type>
                        <d6p1:UIHint>None</d6p1:UIHint>
                        <d6p1:UITab>String</d6p1:UITab>
                        <d6p1:Uniqueness>NotUnique</d6p1:Uniqueness>
                        <d6p1:UserMode>Hidden</d6p1:UserMode>
                        <d6p1:VoiceOnly>false</d6p1:VoiceOnly>
                      </d6p1:DataField>
                    </d6p1:Fields>
                    <d6p1:TypeName>String</d6p1:TypeName>
                  </d6p1:StructType>
                  <d6p1:TransitionNameFormat>String</d6p1:TransitionNameFormat>
                  <d6p1:Type>NotSpecified</d6p1:Type>
                  <d6p1:UIHint>None</d6p1:UIHint>
                  <d6p1:UITab>String</d6p1:UITab>
                  <d6p1:Uniqueness>NotUnique</d6p1:Uniqueness>
                  <d6p1:UserMode>Hidden</d6p1:UserMode>
                  <d6p1:VoiceOnly>false</d6p1:VoiceOnly>
                </d6p1:DataField>
              </d6p1:Fields>
              <d6p1:TypeName>String</d6p1:TypeName>
            </d6p1:ListType>
            <d6p1:Name>String</d6p1:Name>
            <d6p1:NoEvalTemplate>false</d6p1:NoEvalTemplate>
            <d6p1:PossibleValues xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:string>String</d7p1:string>
            </d6p1:PossibleValues>
            <d6p1:StructType>
              <d6p1:Fields>
                <d6p1:DataField>
                  <d6p1:AnyValueType>false</d6p1:AnyValueType>
                  <d6p1:ConditionalVisibilityField>String</d6p1:ConditionalVisibilityField>
                  <d6p1:ConditionalVisibilityValue>String</d6p1:ConditionalVisibilityValue>
                  <d6p1:CustomFieldValuesUrl>String</d6p1:CustomFieldValuesUrl>
                  <d6p1:DefaultValue>
                    <d6p1:BoolValue>false</d6p1:BoolValue>
                    <d6p1:ListValue xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        <d11p1:KeyValueOfstringValue8Ahp2kgT>
                          <d11p1:Key>String</d11p1:Key>
                          <d11p1:Value>
                            <d6p1:BoolValue>false</d6p1:BoolValue>
                            <d6p1:ListValue>
                              <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d11p1:Key>String</d11p1:Key>
                                  <d11p1:Value>
                                    <d6p1:BoolValue>false</d6p1:BoolValue>
                                    <d6p1:ListValue>
                                      <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d11p1:Key>String</d11p1:Key>
                                          <d11p1:Value i:nil="true" />
                                        </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    </d6p1:ListValue>
                                    <d6p1:NumberValue>0</d6p1:NumberValue>
                                    <d6p1:StringValue>String</d6p1:StringValue>
                                    <d6p1:StructValue>
                                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:Key>String</d11p1:Key>
                                        <d11p1:Value i:nil="true" />
                                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d6p1:StructValue>
                                  </d11p1:Value>
                                </d11p1:KeyValueOfstringValue8Ahp2kgT>
                              </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d6p1:ListValue>
                            <d6p1:NumberValue>0</d6p1:NumberValue>
                            <d6p1:StringValue>String</d6p1:StringValue>
                            <d6p1:StructValue>
                              <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                <d11p1:Key>String</d11p1:Key>
                                <d11p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:Key>String</d11p1:Key>
                                        <d11p1:Value i:nil="true" />
                                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:Key>String</d11p1:Key>
                                      <d11p1:Value i:nil="true" />
                                    </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d11p1:Value>
                              </d11p1:KeyValueOfstringValue8Ahp2kgT>
                            </d6p1:StructValue>
                          </d11p1:Value>
                        </d11p1:KeyValueOfstringValue8Ahp2kgT>
                      </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    </d6p1:ListValue>
                    <d6p1:NumberValue>0</d6p1:NumberValue>
                    <d6p1:StringValue>String</d6p1:StringValue>
                    <d6p1:StructValue xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                        <d11p1:Key>String</d11p1:Key>
                        <d11p1:Value>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue>
                            <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                <d11p1:Key>String</d11p1:Key>
                                <d11p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:Key>String</d11p1:Key>
                                        <d11p1:Value i:nil="true" />
                                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:Key>String</d11p1:Key>
                                      <d11p1:Value i:nil="true" />
                                    </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d11p1:Value>
                              </d11p1:KeyValueOfstringValue8Ahp2kgT>
                            </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue>
                            <d11p1:KeyValueOfstringValue8Ahp2kgT>
                              <d11p1:Key>String</d11p1:Key>
                              <d11p1:Value>
                                <d6p1:BoolValue>false</d6p1:BoolValue>
                                <d6p1:ListValue>
                                  <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:Key>String</d11p1:Key>
                                      <d11p1:Value i:nil="true" />
                                    </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d6p1:ListValue>
                                <d6p1:NumberValue>0</d6p1:NumberValue>
                                <d6p1:StringValue>String</d6p1:StringValue>
                                <d6p1:StructValue>
                                  <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d11p1:Key>String</d11p1:Key>
                                    <d11p1:Value i:nil="true" />
                                  </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                </d6p1:StructValue>
                              </d11p1:Value>
                            </d11p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d11p1:Value>
                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                    </d6p1:StructValue>
                  </d6p1:DefaultValue>
                  <d6p1:Description>String</d6p1:Description>
                  <d6p1:DisableBinding>false</d6p1:DisableBinding>
                  <d6p1:Id>String</d6p1:Id>
                  <d6p1:IsAsync>false</d6p1:IsAsync>
                  <d6p1:IsOutput>false</d6p1:IsOutput>
                  <d6p1:ListType>
                    <d6p1:Fields>
                      <d6p1:DataField>
                        <d6p1:AnyValueType>false</d6p1:AnyValueType>
                        <d6p1:ConditionalVisibilityField>String</d6p1:ConditionalVisibilityField>
                        <d6p1:ConditionalVisibilityValue>String</d6p1:ConditionalVisibilityValue>
                        <d6p1:CustomFieldValuesUrl>String</d6p1:CustomFieldValuesUrl>
                        <d6p1:DefaultValue>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                <d14p1:Key>String</d14p1:Key>
                                <d14p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d14p1:Key>String</d14p1:Key>
                                        <d14p1:Value>
                                          <d6p1:BoolValue>false</d6p1:BoolValue>
                                          <d6p1:ListValue>
                                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                                <d14p1:Key>String</d14p1:Key>
                                                <d14p1:Value i:nil="true" />
                                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:ListValue>
                                          <d6p1:NumberValue>0</d6p1:NumberValue>
                                          <d6p1:StringValue>String</d6p1:StringValue>
                                          <d6p1:StructValue>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:StructValue>
                                        </d14p1:Value>
                                      </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d14p1:Value>
                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                              <d14p1:Key>String</d14p1:Key>
                              <d14p1:Value>
                                <d6p1:BoolValue>false</d6p1:BoolValue>
                                <d6p1:ListValue>
                                  <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d6p1:ListValue>
                                <d6p1:NumberValue>0</d6p1:NumberValue>
                                <d6p1:StringValue>String</d6p1:StringValue>
                                <d6p1:StructValue>
                                  <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:Key>String</d14p1:Key>
                                    <d14p1:Value>
                                      <d6p1:BoolValue>false</d6p1:BoolValue>
                                      <d6p1:ListValue>
                                        <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:ListValue>
                                      <d6p1:NumberValue>0</d6p1:NumberValue>
                                      <d6p1:StringValue>String</d6p1:StringValue>
                                      <d6p1:StructValue>
                                        <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:Key>String</d14p1:Key>
                                          <d14p1:Value i:nil="true" />
                                        </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:StructValue>
                                    </d14p1:Value>
                                  </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                </d6p1:StructValue>
                              </d14p1:Value>
                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d6p1:DefaultValue>
                        <d6p1:Description>String</d6p1:Description>
                        <d6p1:DisableBinding>false</d6p1:DisableBinding>
                        <d6p1:Id>String</d6p1:Id>
                        <d6p1:IsAsync>false</d6p1:IsAsync>
                        <d6p1:IsOutput>false</d6p1:IsOutput>
                        <d6p1:ListType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:ListType>
                        <d6p1:Name>String</d6p1:Name>
                        <d6p1:NoEvalTemplate>false</d6p1:NoEvalTemplate>
                        <d6p1:PossibleValues xmlns:d13p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                          <d13p1:string>String</d13p1:string>
                        </d6p1:PossibleValues>
                        <d6p1:StructType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:StructType>
                        <d6p1:TransitionNameFormat>String</d6p1:TransitionNameFormat>
                        <d6p1:Type>NotSpecified</d6p1:Type>
                        <d6p1:UIHint>None</d6p1:UIHint>
                        <d6p1:UITab>String</d6p1:UITab>
                        <d6p1:Uniqueness>NotUnique</d6p1:Uniqueness>
                        <d6p1:UserMode>Hidden</d6p1:UserMode>
                        <d6p1:VoiceOnly>false</d6p1:VoiceOnly>
                      </d6p1:DataField>
                    </d6p1:Fields>
                    <d6p1:TypeName>String</d6p1:TypeName>
                  </d6p1:ListType>
                  <d6p1:Name>String</d6p1:Name>
                  <d6p1:NoEvalTemplate>false</d6p1:NoEvalTemplate>
                  <d6p1:PossibleValues xmlns:d10p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                    <d10p1:string>String</d10p1:string>
                  </d6p1:PossibleValues>
                  <d6p1:StructType>
                    <d6p1:Fields>
                      <d6p1:DataField>
                        <d6p1:AnyValueType>false</d6p1:AnyValueType>
                        <d6p1:ConditionalVisibilityField>String</d6p1:ConditionalVisibilityField>
                        <d6p1:ConditionalVisibilityValue>String</d6p1:ConditionalVisibilityValue>
                        <d6p1:CustomFieldValuesUrl>String</d6p1:CustomFieldValuesUrl>
                        <d6p1:DefaultValue>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                <d14p1:Key>String</d14p1:Key>
                                <d14p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d14p1:Key>String</d14p1:Key>
                                        <d14p1:Value>
                                          <d6p1:BoolValue>false</d6p1:BoolValue>
                                          <d6p1:ListValue>
                                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                                <d14p1:Key>String</d14p1:Key>
                                                <d14p1:Value i:nil="true" />
                                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:ListValue>
                                          <d6p1:NumberValue>0</d6p1:NumberValue>
                                          <d6p1:StringValue>String</d6p1:StringValue>
                                          <d6p1:StructValue>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:StructValue>
                                        </d14p1:Value>
                                      </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d14p1:Value>
                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                              <d14p1:Key>String</d14p1:Key>
                              <d14p1:Value>
                                <d6p1:BoolValue>false</d6p1:BoolValue>
                                <d6p1:ListValue>
                                  <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d6p1:ListValue>
                                <d6p1:NumberValue>0</d6p1:NumberValue>
                                <d6p1:StringValue>String</d6p1:StringValue>
                                <d6p1:StructValue>
                                  <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:Key>String</d14p1:Key>
                                    <d14p1:Value>
                                      <d6p1:BoolValue>false</d6p1:BoolValue>
                                      <d6p1:ListValue>
                                        <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:ListValue>
                                      <d6p1:NumberValue>0</d6p1:NumberValue>
                                      <d6p1:StringValue>String</d6p1:StringValue>
                                      <d6p1:StructValue>
                                        <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:Key>String</d14p1:Key>
                                          <d14p1:Value i:nil="true" />
                                        </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:StructValue>
                                    </d14p1:Value>
                                  </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                </d6p1:StructValue>
                              </d14p1:Value>
                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d6p1:DefaultValue>
                        <d6p1:Description>String</d6p1:Description>
                        <d6p1:DisableBinding>false</d6p1:DisableBinding>
                        <d6p1:Id>String</d6p1:Id>
                        <d6p1:IsAsync>false</d6p1:IsAsync>
                        <d6p1:IsOutput>false</d6p1:IsOutput>
                        <d6p1:ListType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:ListType>
                        <d6p1:Name>String</d6p1:Name>
                        <d6p1:NoEvalTemplate>false</d6p1:NoEvalTemplate>
                        <d6p1:PossibleValues xmlns:d13p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                          <d13p1:string>String</d13p1:string>
                        </d6p1:PossibleValues>
                        <d6p1:StructType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:StructType>
                        <d6p1:TransitionNameFormat>String</d6p1:TransitionNameFormat>
                        <d6p1:Type>NotSpecified</d6p1:Type>
                        <d6p1:UIHint>None</d6p1:UIHint>
                        <d6p1:UITab>String</d6p1:UITab>
                        <d6p1:Uniqueness>NotUnique</d6p1:Uniqueness>
                        <d6p1:UserMode>Hidden</d6p1:UserMode>
                        <d6p1:VoiceOnly>false</d6p1:VoiceOnly>
                      </d6p1:DataField>
                    </d6p1:Fields>
                    <d6p1:TypeName>String</d6p1:TypeName>
                  </d6p1:StructType>
                  <d6p1:TransitionNameFormat>String</d6p1:TransitionNameFormat>
                  <d6p1:Type>NotSpecified</d6p1:Type>
                  <d6p1:UIHint>None</d6p1:UIHint>
                  <d6p1:UITab>String</d6p1:UITab>
                  <d6p1:Uniqueness>NotUnique</d6p1:Uniqueness>
                  <d6p1:UserMode>Hidden</d6p1:UserMode>
                  <d6p1:VoiceOnly>false</d6p1:VoiceOnly>
                </d6p1:DataField>
              </d6p1:Fields>
              <d6p1:TypeName>String</d6p1:TypeName>
            </d6p1:StructType>
            <d6p1:TransitionNameFormat>String</d6p1:TransitionNameFormat>
            <d6p1:Type>NotSpecified</d6p1:Type>
            <d6p1:UIHint>None</d6p1:UIHint>
            <d6p1:UITab>String</d6p1:UITab>
            <d6p1:Uniqueness>NotUnique</d6p1:Uniqueness>
            <d6p1:UserMode>Hidden</d6p1:UserMode>
            <d6p1:VoiceOnly>false</d6p1:VoiceOnly>
          </DataField>
          <DisplayName>String</DisplayName>
          <Name>String</Name>
          <PossibleValues>
            <SettingsPossibleValue>
              <DisplayName>String</DisplayName>
              <Value xmlns:d8p1="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">
                <d8p1:BoolValue>false</d8p1:BoolValue>
                <d8p1:ListValue xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    <d9p1:KeyValueOfstringValue8Ahp2kgT>
                      <d9p1:Key>String</d9p1:Key>
                      <d9p1:Value>
                        <d8p1:BoolValue>false</d8p1:BoolValue>
                        <d8p1:ListValue>
                          <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            <d9p1:KeyValueOfstringValue8Ahp2kgT>
                              <d9p1:Key>String</d9p1:Key>
                              <d9p1:Value>
                                <d8p1:BoolValue>false</d8p1:BoolValue>
                                <d8p1:ListValue>
                                  <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d9p1:Key>String</d9p1:Key>
                                      <d9p1:Value i:nil="true" />
                                    </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d8p1:ListValue>
                                <d8p1:NumberValue>0</d8p1:NumberValue>
                                <d8p1:StringValue>String</d8p1:StringValue>
                                <d8p1:StructValue>
                                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:Key>String</d9p1:Key>
                                    <d9p1:Value i:nil="true" />
                                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                </d8p1:StructValue>
                              </d9p1:Value>
                            </d9p1:KeyValueOfstringValue8Ahp2kgT>
                          </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        </d8p1:ListValue>
                        <d8p1:NumberValue>0</d8p1:NumberValue>
                        <d8p1:StringValue>String</d8p1:StringValue>
                        <d8p1:StructValue>
                          <d9p1:KeyValueOfstringValue8Ahp2kgT>
                            <d9p1:Key>String</d9p1:Key>
                            <d9p1:Value>
                              <d8p1:BoolValue>false</d8p1:BoolValue>
                              <d8p1:ListValue>
                                <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:Key>String</d9p1:Key>
                                    <d9p1:Value i:nil="true" />
                                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              </d8p1:ListValue>
                              <d8p1:NumberValue>0</d8p1:NumberValue>
                              <d8p1:StringValue>String</d8p1:StringValue>
                              <d8p1:StructValue>
                                <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:Key>String</d9p1:Key>
                                  <d9p1:Value i:nil="true" />
                                </d9p1:KeyValueOfstringValue8Ahp2kgT>
                              </d8p1:StructValue>
                            </d9p1:Value>
                          </d9p1:KeyValueOfstringValue8Ahp2kgT>
                        </d8p1:StructValue>
                      </d9p1:Value>
                    </d9p1:KeyValueOfstringValue8Ahp2kgT>
                  </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                </d8p1:ListValue>
                <d8p1:NumberValue>0</d8p1:NumberValue>
                <d8p1:StringValue>String</d8p1:StringValue>
                <d8p1:StructValue xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                    <d9p1:Key>String</d9p1:Key>
                    <d9p1:Value>
                      <d8p1:BoolValue>false</d8p1:BoolValue>
                      <d8p1:ListValue>
                        <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          <d9p1:KeyValueOfstringValue8Ahp2kgT>
                            <d9p1:Key>String</d9p1:Key>
                            <d9p1:Value>
                              <d8p1:BoolValue>false</d8p1:BoolValue>
                              <d8p1:ListValue>
                                <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:Key>String</d9p1:Key>
                                    <d9p1:Value i:nil="true" />
                                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              </d8p1:ListValue>
                              <d8p1:NumberValue>0</d8p1:NumberValue>
                              <d8p1:StringValue>String</d8p1:StringValue>
                              <d8p1:StructValue>
                                <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:Key>String</d9p1:Key>
                                  <d9p1:Value i:nil="true" />
                                </d9p1:KeyValueOfstringValue8Ahp2kgT>
                              </d8p1:StructValue>
                            </d9p1:Value>
                          </d9p1:KeyValueOfstringValue8Ahp2kgT>
                        </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      </d8p1:ListValue>
                      <d8p1:NumberValue>0</d8p1:NumberValue>
                      <d8p1:StringValue>String</d8p1:StringValue>
                      <d8p1:StructValue>
                        <d9p1:KeyValueOfstringValue8Ahp2kgT>
                          <d9p1:Key>String</d9p1:Key>
                          <d9p1:Value>
                            <d8p1:BoolValue>false</d8p1:BoolValue>
                            <d8p1:ListValue>
                              <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:Key>String</d9p1:Key>
                                  <d9p1:Value i:nil="true" />
                                </d9p1:KeyValueOfstringValue8Ahp2kgT>
                              </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d8p1:ListValue>
                            <d8p1:NumberValue>0</d8p1:NumberValue>
                            <d8p1:StringValue>String</d8p1:StringValue>
                            <d8p1:StructValue>
                              <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                <d9p1:Key>String</d9p1:Key>
                                <d9p1:Value i:nil="true" />
                              </d9p1:KeyValueOfstringValue8Ahp2kgT>
                            </d8p1:StructValue>
                          </d9p1:Value>
                        </d9p1:KeyValueOfstringValue8Ahp2kgT>
                      </d8p1:StructValue>
                    </d9p1:Value>
                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                </d8p1:StructValue>
              </Value>
            </SettingsPossibleValue>
          </PossibleValues>
          <ReadOnly>false</ReadOnly>
          <Type>NotSpecified</Type>
          <Value xmlns:d6p1="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">
            <d6p1:BoolValue>false</d6p1:BoolValue>
            <d6p1:ListValue xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                <d7p1:KeyValueOfstringValue8Ahp2kgT>
                  <d7p1:Key>String</d7p1:Key>
                  <d7p1:Value>
                    <d6p1:BoolValue>false</d6p1:BoolValue>
                    <d6p1:ListValue>
                      <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        <d7p1:KeyValueOfstringValue8Ahp2kgT>
                          <d7p1:Key>String</d7p1:Key>
                          <d7p1:Value>
                            <d6p1:BoolValue>false</d6p1:BoolValue>
                            <d6p1:ListValue>
                              <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d7p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d7p1:Key>String</d7p1:Key>
                                  <d7p1:Value i:nil="true" />
                                </d7p1:KeyValueOfstringValue8Ahp2kgT>
                              </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d6p1:ListValue>
                            <d6p1:NumberValue>0</d6p1:NumberValue>
                            <d6p1:StringValue>String</d6p1:StringValue>
                            <d6p1:StructValue>
                              <d7p1:KeyValueOfstringValue8Ahp2kgT>
                                <d7p1:Key>String</d7p1:Key>
                                <d7p1:Value i:nil="true" />
                              </d7p1:KeyValueOfstringValue8Ahp2kgT>
                            </d6p1:StructValue>
                          </d7p1:Value>
                        </d7p1:KeyValueOfstringValue8Ahp2kgT>
                      </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    </d6p1:ListValue>
                    <d6p1:NumberValue>0</d6p1:NumberValue>
                    <d6p1:StringValue>String</d6p1:StringValue>
                    <d6p1:StructValue>
                      <d7p1:KeyValueOfstringValue8Ahp2kgT>
                        <d7p1:Key>String</d7p1:Key>
                        <d7p1:Value>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue>
                            <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d7p1:KeyValueOfstringValue8Ahp2kgT>
                                <d7p1:Key>String</d7p1:Key>
                                <d7p1:Value i:nil="true" />
                              </d7p1:KeyValueOfstringValue8Ahp2kgT>
                            </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue>
                            <d7p1:KeyValueOfstringValue8Ahp2kgT>
                              <d7p1:Key>String</d7p1:Key>
                              <d7p1:Value i:nil="true" />
                            </d7p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d7p1:Value>
                      </d7p1:KeyValueOfstringValue8Ahp2kgT>
                    </d6p1:StructValue>
                  </d7p1:Value>
                </d7p1:KeyValueOfstringValue8Ahp2kgT>
              </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
            </d6p1:ListValue>
            <d6p1:NumberValue>0</d6p1:NumberValue>
            <d6p1:StringValue>String</d6p1:StringValue>
            <d6p1:StructValue xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:KeyValueOfstringValue8Ahp2kgT>
                <d7p1:Key>String</d7p1:Key>
                <d7p1:Value>
                  <d6p1:BoolValue>false</d6p1:BoolValue>
                  <d6p1:ListValue>
                    <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      <d7p1:KeyValueOfstringValue8Ahp2kgT>
                        <d7p1:Key>String</d7p1:Key>
                        <d7p1:Value>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue>
                            <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d7p1:KeyValueOfstringValue8Ahp2kgT>
                                <d7p1:Key>String</d7p1:Key>
                                <d7p1:Value i:nil="true" />
                              </d7p1:KeyValueOfstringValue8Ahp2kgT>
                            </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue>
                            <d7p1:KeyValueOfstringValue8Ahp2kgT>
                              <d7p1:Key>String</d7p1:Key>
                              <d7p1:Value i:nil="true" />
                            </d7p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d7p1:Value>
                      </d7p1:KeyValueOfstringValue8Ahp2kgT>
                    </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                  </d6p1:ListValue>
                  <d6p1:NumberValue>0</d6p1:NumberValue>
                  <d6p1:StringValue>String</d6p1:StringValue>
                  <d6p1:StructValue>
                    <d7p1:KeyValueOfstringValue8Ahp2kgT>
                      <d7p1:Key>String</d7p1:Key>
                      <d7p1:Value>
                        <d6p1:BoolValue>false</d6p1:BoolValue>
                        <d6p1:ListValue>
                          <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            <d7p1:KeyValueOfstringValue8Ahp2kgT>
                              <d7p1:Key>String</d7p1:Key>
                              <d7p1:Value i:nil="true" />
                            </d7p1:KeyValueOfstringValue8Ahp2kgT>
                          </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        </d6p1:ListValue>
                        <d6p1:NumberValue>0</d6p1:NumberValue>
                        <d6p1:StringValue>String</d6p1:StringValue>
                        <d6p1:StructValue>
                          <d7p1:KeyValueOfstringValue8Ahp2kgT>
                            <d7p1:Key>String</d7p1:Key>
                            <d7p1:Value i:nil="true" />
                          </d7p1:KeyValueOfstringValue8Ahp2kgT>
                        </d6p1:StructValue>
                      </d7p1:Value>
                    </d7p1:KeyValueOfstringValue8Ahp2kgT>
                  </d6p1:StructValue>
                </d7p1:Value>
              </d7p1:KeyValueOfstringValue8Ahp2kgT>
            </d6p1:StructValue>
          </Value>
        </SettingsField>
      </Fields>
      <Id>String</Id>
      <Name>String</Name>
      <ReadOnly>false</ReadOnly>
      <Type>Endpoint</Type>
    </SettingsObject>
  </SettingsObjects>
</ListSettingsObjectsResponse>