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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Voice.Api.App;
using Voice.Api.Endpoints;
using Voice.Api.Flows.Data;

namespace Voice.Api.App
{
    ///<summary>
    ///Get all configurable settings objects for the authenticated user
    ///</summary>
    [Api(Description="Get all configurable settings objects for the authenticated user")]
    public partial class ListSettingsObjects
        : IGet
    {
    }

    public partial class ListSettingsObjectsResponse
    {
        public ListSettingsObjectsResponse()
        {
            SettingsObjects = new List<SettingsObject>{};
        }

        public virtual List<SettingsObject> SettingsObjects { get; set; }
    }

    public partial class SettingsField
    {
        public SettingsField()
        {
            PossibleValues = new List<SettingsPossibleValue>{};
        }

        public virtual string Name { get; set; }
        public virtual string DisplayName { get; set; }
        public virtual ValueTypes Type { get; set; }
        public virtual Value Value { get; set; }
        public virtual bool ReadOnly { get; set; }
        public virtual List<SettingsPossibleValue> PossibleValues { get; set; }
        public virtual DataField DataField { get; set; }
    }

    public partial class SettingsObject
    {
        public SettingsObject()
        {
            Fields = new List<SettingsField>{};
        }

        public virtual string Id { get; set; }
        public virtual string Name { get; set; }
        public virtual string Description { get; set; }
        public virtual bool ReadOnly { get; set; }
        public virtual SettingsObjectTypes Type { get; set; }
        public virtual EndpointTypes? EndpointType { get; set; }
        public virtual List<SettingsField> Fields { get; set; }
    }

    public enum SettingsObjectTypes
    {
        Endpoint,
        Customer,
    }

    public partial class SettingsPossibleValue
    {
        public virtual string DisplayName { get; set; }
        public virtual Value Value { get; set; }
    }

}

namespace Voice.Api.Endpoints
{
    public enum EndpointTypes
    {
        PhoneNumber,
        User,
        FaxNumber,
        EmailAddress,
        Unused_1,
        Unused_2,
        Unused_3,
        Unused_4,
        Unused_5,
        Team,
    }

    public enum UserDataFieldModes
    {
        Hidden,
        ReadOnly,
        ReadWrite,
    }

}

namespace Voice.Api.Flows.Data
{
    public partial class DataField
    {
        public DataField()
        {
            PossibleValues = new List<string>{};
        }

        public virtual string Id { get; set; }
        public virtual string Name { get; set; }
        public virtual ValueTypes Type { get; set; }
        public virtual UIHints UIHint { get; set; }
        public virtual string UITab { get; set; }
        public virtual bool IsAsync { get; set; }
        public virtual bool DisableBinding { get; set; }
        public virtual DataType StructType { get; set; }
        public virtual DataType ListType { get; set; }
        public virtual string Description { get; set; }
        public virtual List<string> PossibleValues { get; set; }
        public virtual bool IsOutput { get; set; }
        public virtual string CustomFieldValuesUrl { get; set; }
        public virtual Value DefaultValue { get; set; }
        public virtual string TransitionNameFormat { get; set; }
        public virtual DataFieldUniqueness Uniqueness { get; set; }
        public virtual bool VoiceOnly { get; set; }
        public virtual string ConditionalVisibilityField { get; set; }
        public virtual string ConditionalVisibilityValue { get; set; }
        public virtual bool NoEvalTemplate { get; set; }
        public virtual UserDataFieldModes UserMode { get; set; }
        public virtual bool AnyValueType { get; set; }
    }

    public enum DataFieldUniqueness
    {
        NotUnique,
        Unique,
        UniqueToCustomer,
    }

    public partial class DataType
    {
        public DataType()
        {
            Fields = new List<DataField>{};
        }

        public virtual string TypeName { get; set; }
        public virtual List<DataField> Fields { get; set; }
    }

    public partial class Struct
        : Dictionary<string, Value>
    {
    }

    public enum UIHints
    {
        None,
        LargeText,
        InlineForm,
        Password,
        InlineStruct,
    }

    public partial class Value
    {
        public Value()
        {
            ListValue = new List<Struct>{};
        }

        public virtual bool? BoolValue { get; set; }
        public virtual string StringValue { get; set; }
        public virtual double? NumberValue { get; set; }
        public virtual List<Struct> ListValue { get; set; }
        public virtual Struct StructValue { get; set; }
    }

    public enum ValueTypes
    {
        NotSpecified,
        String,
        Boolean,
        Number,
        List,
        Struct,
        Transition,
        Custom,
        Date,
        AudioFile,
        TimeZoneId,
        PhoneNumber,
        User,
        Endpoint,
        Time,
        File,
        FaxNumber,
        EmailAccount,
        Customer,
        Flow,
        Team,
        FlowReference,
        Integration,
    }

}

C# 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>