Evo Voice

<back to all web services

GetIntegration

Get a specific integration

The following routes are available for this service:
GET/integrations/{integrationId}
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Voice.Api.Integrations;
using Voice.Api;
using Voice.Api.Customers;
using Voice.Api.Flows.Data;
using Voice.Api.Endpoints;

namespace Voice.Api
{
    public partial class EntityInfo
    {
        ///<summary>
        ///The ID of the object
        ///</summary>
        [ApiMember(Description="The ID of the object")]
        public virtual string Id { get; set; }

        ///<summary>
        ///The date the object was created
        ///</summary>
        [ApiMember(Description="The date the object was created")]
        public virtual string DateCreated { get; set; }

        ///<summary>
        ///The date the object was last modified
        ///</summary>
        [ApiMember(Description="The date the object was last modified")]
        public virtual string DateLastModified { get; set; }

        ///<summary>
        ///The user that created this object
        ///</summary>
        [ApiMember(Description="The user that created this object")]
        public virtual string CreatedBy { get; set; }

        ///<summary>
        ///The user that last modified this object
        ///</summary>
        [ApiMember(Description="The user that last modified this object")]
        public virtual string LastModifiedBy { get; set; }
    }

}

namespace Voice.Api.Customers
{
    public partial class CustomerBreadcrumb
    {
        public virtual string Id { get; set; }
        public virtual string Name { get; set; }
    }

}

namespace Voice.Api.Endpoints
{
    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,
    }

}

namespace Voice.Api.Integrations
{
    ///<summary>
    ///Get a specific integration
    ///</summary>
    [Api(Description="Get a specific integration")]
    public partial class GetIntegration
        : IGet
    {
        ///<summary>
        ///The ID of the integration you want to get
        ///</summary>
        [ApiMember(Description="The ID of the integration you want to get")]
        public virtual string IntegrationId { get; set; }
    }

    public enum IntegrationFeatures
    {
        CrmSync,
        OAuth2,
    }

    public partial class IntegrationInfo
        : EntityInfo
    {
        public IntegrationInfo()
        {
            CustomerBreadcrumb = new List<CustomerBreadcrumb>{};
            Features = new List<IntegrationFeatures>{};
        }

        ///<summary>
        ///The ID of the account associated with this integration
        ///</summary>
        [ApiMember(Description="The ID of the account associated with this integration")]
        public virtual string AccountId { get; set; }

        ///<summary>
        ///The ID of the customer this integration is associated with
        ///</summary>
        [ApiMember(Description="The ID of the customer this integration is associated with")]
        public virtual string CustomerId { get; set; }

        ///<summary>
        ///The name of the customer this integration is associated with
        ///</summary>
        [ApiMember(Description="The name of the customer this integration is associated with")]
        public virtual string CustomerName { get; set; }

        ///<summary>
        ///The date the integration was sync'd last
        ///</summary>
        [ApiMember(Description="The date the integration was sync'd last")]
        public virtual string DateLastSync { get; set; }

        ///<summary>
        ///The breadcrumb to the customer for this integration
        ///</summary>
        [ApiMember(Description="The breadcrumb to the customer for this integration")]
        public virtual List<CustomerBreadcrumb> CustomerBreadcrumb { get; set; }

        ///<summary>
        ///The name of the integration (e.g. HostedSuite Dallas)
        ///</summary>
        [ApiMember(Description="The name of the integration (e.g. HostedSuite Dallas)")]
        public virtual string Name { get; set; }

        ///<summary>
        ///Automatically create new customers / users when sync'ing with CRM?
        ///</summary>
        [ApiMember(Description="Automatically create new customers / users when sync'ing with CRM?")]
        public virtual bool AutomaticallyCreateCustomers { get; set; }

        ///<summary>
        ///The type of integration
        ///</summary>
        [ApiMember(Description="The type of integration")]
        public virtual IntegrationTypes Type { get; set; }

        ///<summary>
        ///The status of the integration
        ///</summary>
        [ApiMember(Description="The status of the integration")]
        public virtual IntegrationStatuses Status { get; set; }

        ///<summary>
        ///The status of the integration
        ///</summary>
        [ApiMember(Description="The status of the integration")]
        public virtual string StatusMessage { get; set; }

        ///<summary>
        ///The settings type for this integration
        ///</summary>
        [ApiMember(Description="The settings type for this integration")]
        public virtual DataType SettingsDataType { get; set; }

        ///<summary>
        ///The settings for this integration
        ///</summary>
        [ApiMember(Description="The settings for this integration")]
        public virtual Struct Settings { get; set; }

        ///<summary>
        ///The features supported by this integration
        ///</summary>
        [ApiMember(Description="The features supported by this integration")]
        public virtual List<IntegrationFeatures> Features { get; set; }

        ///<summary>
        ///Is this integration authorized (OAuth)?
        ///</summary>
        [ApiMember(Description="Is this integration authorized (OAuth)?")]
        public virtual bool IsAuthorized { get; set; }
    }

    public enum IntegrationStatuses
    {
        NotConfigured,
        Error,
        OK,
    }

    public enum IntegrationTypes
    {
        HostedSuite,
        OfficeRnd,
        Zoho,
    }

}

C# GetIntegration 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 /integrations/{integrationId} HTTP/1.1 
Host: evovoice.io 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<IntegrationInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Integrations">
  <CreatedBy xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">String</CreatedBy>
  <DateCreated xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">String</DateCreated>
  <DateLastModified xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">String</DateLastModified>
  <Id xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">String</Id>
  <LastModifiedBy xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">String</LastModifiedBy>
  <AccountId>String</AccountId>
  <AutomaticallyCreateCustomers>false</AutomaticallyCreateCustomers>
  <CustomerBreadcrumb xmlns:d2p1="http://schemas.datacontract.org/2004/07/Voice.Api.Customers">
    <d2p1:CustomerBreadcrumb>
      <d2p1:Id>String</d2p1:Id>
      <d2p1:Name>String</d2p1:Name>
    </d2p1:CustomerBreadcrumb>
  </CustomerBreadcrumb>
  <CustomerId>String</CustomerId>
  <CustomerName>String</CustomerName>
  <DateLastSync>String</DateLastSync>
  <Features>
    <IntegrationFeatures>CrmSync</IntegrationFeatures>
  </Features>
  <IsAuthorized>false</IsAuthorized>
  <Name>String</Name>
  <Settings xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringValue8Ahp2kgT>
      <d2p1:Key>String</d2p1:Key>
      <d2p1:Value xmlns:d4p1="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">
        <d4p1:BoolValue>false</d4p1:BoolValue>
        <d4p1:ListValue>
          <d2p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
            <d2p1:KeyValueOfstringValue8Ahp2kgT>
              <d2p1:Key>String</d2p1:Key>
              <d2p1:Value>
                <d4p1:BoolValue>false</d4p1:BoolValue>
                <d4p1:ListValue>
                  <d2p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    <d2p1:KeyValueOfstringValue8Ahp2kgT>
                      <d2p1:Key>String</d2p1:Key>
                      <d2p1:Value>
                        <d4p1:BoolValue>false</d4p1:BoolValue>
                        <d4p1:ListValue>
                          <d2p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                        </d4p1:ListValue>
                        <d4p1:NumberValue>0</d4p1:NumberValue>
                        <d4p1:StringValue>String</d4p1:StringValue>
                        <d4p1:StructValue i:nil="true" />
                      </d2p1:Value>
                    </d2p1:KeyValueOfstringValue8Ahp2kgT>
                  </d2p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                </d4p1:ListValue>
                <d4p1:NumberValue>0</d4p1:NumberValue>
                <d4p1:StringValue>String</d4p1:StringValue>
                <d4p1:StructValue>
                  <d2p1:KeyValueOfstringValue8Ahp2kgT>
                    <d2p1:Key>String</d2p1:Key>
                    <d2p1:Value>
                      <d4p1:BoolValue>false</d4p1:BoolValue>
                      <d4p1:ListValue>
                        <d2p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                      </d4p1:ListValue>
                      <d4p1:NumberValue>0</d4p1:NumberValue>
                      <d4p1:StringValue>String</d4p1:StringValue>
                      <d4p1:StructValue i:nil="true" />
                    </d2p1:Value>
                  </d2p1:KeyValueOfstringValue8Ahp2kgT>
                </d4p1:StructValue>
              </d2p1:Value>
            </d2p1:KeyValueOfstringValue8Ahp2kgT>
          </d2p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
        </d4p1:ListValue>
        <d4p1:NumberValue>0</d4p1:NumberValue>
        <d4p1:StringValue>String</d4p1:StringValue>
        <d4p1:StructValue>
          <d2p1:KeyValueOfstringValue8Ahp2kgT>
            <d2p1:Key>String</d2p1:Key>
            <d2p1:Value>
              <d4p1:BoolValue>false</d4p1:BoolValue>
              <d4p1:ListValue>
                <d2p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                  <d2p1:KeyValueOfstringValue8Ahp2kgT>
                    <d2p1:Key>String</d2p1:Key>
                    <d2p1:Value>
                      <d4p1:BoolValue>false</d4p1:BoolValue>
                      <d4p1:ListValue>
                        <d2p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                      </d4p1:ListValue>
                      <d4p1:NumberValue>0</d4p1:NumberValue>
                      <d4p1:StringValue>String</d4p1:StringValue>
                      <d4p1:StructValue i:nil="true" />
                    </d2p1:Value>
                  </d2p1:KeyValueOfstringValue8Ahp2kgT>
                </d2p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
              </d4p1:ListValue>
              <d4p1:NumberValue>0</d4p1:NumberValue>
              <d4p1:StringValue>String</d4p1:StringValue>
              <d4p1:StructValue>
                <d2p1:KeyValueOfstringValue8Ahp2kgT>
                  <d2p1:Key>String</d2p1:Key>
                  <d2p1:Value>
                    <d4p1:BoolValue>false</d4p1:BoolValue>
                    <d4p1:ListValue>
                      <d2p1:ArrayOfKeyValueOfstringValue8Ahp2kgT i:nil="true" />
                    </d4p1:ListValue>
                    <d4p1:NumberValue>0</d4p1:NumberValue>
                    <d4p1:StringValue>String</d4p1:StringValue>
                    <d4p1:StructValue i:nil="true" />
                  </d2p1:Value>
                </d2p1:KeyValueOfstringValue8Ahp2kgT>
              </d4p1:StructValue>
            </d2p1:Value>
          </d2p1:KeyValueOfstringValue8Ahp2kgT>
        </d4p1:StructValue>
      </d2p1:Value>
    </d2p1:KeyValueOfstringValue8Ahp2kgT>
  </Settings>
  <SettingsDataType xmlns:d2p1="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">
    <d2p1:Fields>
      <d2p1:DataField>
        <d2p1:AnyValueType>false</d2p1:AnyValueType>
        <d2p1:ConditionalVisibilityField>String</d2p1:ConditionalVisibilityField>
        <d2p1:ConditionalVisibilityValue>String</d2p1:ConditionalVisibilityValue>
        <d2p1:CustomFieldValuesUrl>String</d2p1:CustomFieldValuesUrl>
        <d2p1:DefaultValue>
          <d2p1:BoolValue>false</d2p1:BoolValue>
          <d2p1:ListValue xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
              <d6p1:KeyValueOfstringValue8Ahp2kgT>
                <d6p1:Key>String</d6p1:Key>
                <d6p1:Value>
                  <d2p1:BoolValue>false</d2p1:BoolValue>
                  <d2p1:ListValue>
                    <d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      <d6p1:KeyValueOfstringValue8Ahp2kgT>
                        <d6p1:Key>String</d6p1:Key>
                        <d6p1:Value>
                          <d2p1:BoolValue>false</d2p1:BoolValue>
                          <d2p1:ListValue>
                            <d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d6p1:KeyValueOfstringValue8Ahp2kgT>
                                <d6p1:Key>String</d6p1:Key>
                                <d6p1:Value i:nil="true" />
                              </d6p1:KeyValueOfstringValue8Ahp2kgT>
                            </d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d2p1:ListValue>
                          <d2p1:NumberValue>0</d2p1:NumberValue>
                          <d2p1:StringValue>String</d2p1:StringValue>
                          <d2p1:StructValue>
                            <d6p1:KeyValueOfstringValue8Ahp2kgT>
                              <d6p1:Key>String</d6p1:Key>
                              <d6p1:Value i:nil="true" />
                            </d6p1:KeyValueOfstringValue8Ahp2kgT>
                          </d2p1:StructValue>
                        </d6p1:Value>
                      </d6p1:KeyValueOfstringValue8Ahp2kgT>
                    </d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                  </d2p1:ListValue>
                  <d2p1:NumberValue>0</d2p1:NumberValue>
                  <d2p1:StringValue>String</d2p1:StringValue>
                  <d2p1:StructValue>
                    <d6p1:KeyValueOfstringValue8Ahp2kgT>
                      <d6p1:Key>String</d6p1:Key>
                      <d6p1:Value>
                        <d2p1:BoolValue>false</d2p1:BoolValue>
                        <d2p1:ListValue>
                          <d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            <d6p1:KeyValueOfstringValue8Ahp2kgT>
                              <d6p1:Key>String</d6p1:Key>
                              <d6p1:Value i:nil="true" />
                            </d6p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        </d2p1:ListValue>
                        <d2p1:NumberValue>0</d2p1:NumberValue>
                        <d2p1:StringValue>String</d2p1:StringValue>
                        <d2p1:StructValue>
                          <d6p1:KeyValueOfstringValue8Ahp2kgT>
                            <d6p1:Key>String</d6p1:Key>
                            <d6p1:Value i:nil="true" />
                          </d6p1:KeyValueOfstringValue8Ahp2kgT>
                        </d2p1:StructValue>
                      </d6p1:Value>
                    </d6p1:KeyValueOfstringValue8Ahp2kgT>
                  </d2p1:StructValue>
                </d6p1:Value>
              </d6p1:KeyValueOfstringValue8Ahp2kgT>
            </d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
          </d2p1:ListValue>
          <d2p1:NumberValue>0</d2p1:NumberValue>
          <d2p1:StringValue>String</d2p1:StringValue>
          <d2p1:StructValue xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:KeyValueOfstringValue8Ahp2kgT>
              <d6p1:Key>String</d6p1:Key>
              <d6p1:Value>
                <d2p1:BoolValue>false</d2p1:BoolValue>
                <d2p1:ListValue>
                  <d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    <d6p1:KeyValueOfstringValue8Ahp2kgT>
                      <d6p1:Key>String</d6p1:Key>
                      <d6p1:Value>
                        <d2p1:BoolValue>false</d2p1:BoolValue>
                        <d2p1:ListValue>
                          <d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            <d6p1:KeyValueOfstringValue8Ahp2kgT>
                              <d6p1:Key>String</d6p1:Key>
                              <d6p1:Value i:nil="true" />
                            </d6p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        </d2p1:ListValue>
                        <d2p1:NumberValue>0</d2p1:NumberValue>
                        <d2p1:StringValue>String</d2p1:StringValue>
                        <d2p1:StructValue>
                          <d6p1:KeyValueOfstringValue8Ahp2kgT>
                            <d6p1:Key>String</d6p1:Key>
                            <d6p1:Value i:nil="true" />
                          </d6p1:KeyValueOfstringValue8Ahp2kgT>
                        </d2p1:StructValue>
                      </d6p1:Value>
                    </d6p1:KeyValueOfstringValue8Ahp2kgT>
                  </d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                </d2p1:ListValue>
                <d2p1:NumberValue>0</d2p1:NumberValue>
                <d2p1:StringValue>String</d2p1:StringValue>
                <d2p1:StructValue>
                  <d6p1:KeyValueOfstringValue8Ahp2kgT>
                    <d6p1:Key>String</d6p1:Key>
                    <d6p1:Value>
                      <d2p1:BoolValue>false</d2p1:BoolValue>
                      <d2p1:ListValue>
                        <d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          <d6p1:KeyValueOfstringValue8Ahp2kgT>
                            <d6p1:Key>String</d6p1:Key>
                            <d6p1:Value i:nil="true" />
                          </d6p1:KeyValueOfstringValue8Ahp2kgT>
                        </d6p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      </d2p1:ListValue>
                      <d2p1:NumberValue>0</d2p1:NumberValue>
                      <d2p1:StringValue>String</d2p1:StringValue>
                      <d2p1:StructValue>
                        <d6p1:KeyValueOfstringValue8Ahp2kgT>
                          <d6p1:Key>String</d6p1:Key>
                          <d6p1:Value i:nil="true" />
                        </d6p1:KeyValueOfstringValue8Ahp2kgT>
                      </d2p1:StructValue>
                    </d6p1:Value>
                  </d6p1:KeyValueOfstringValue8Ahp2kgT>
                </d2p1:StructValue>
              </d6p1:Value>
            </d6p1:KeyValueOfstringValue8Ahp2kgT>
          </d2p1:StructValue>
        </d2p1:DefaultValue>
        <d2p1:Description>String</d2p1:Description>
        <d2p1:DisableBinding>false</d2p1:DisableBinding>
        <d2p1:Id>String</d2p1:Id>
        <d2p1:IsAsync>false</d2p1:IsAsync>
        <d2p1:IsOutput>false</d2p1:IsOutput>
        <d2p1:ListType>
          <d2p1:Fields>
            <d2p1:DataField>
              <d2p1:AnyValueType>false</d2p1:AnyValueType>
              <d2p1:ConditionalVisibilityField>String</d2p1:ConditionalVisibilityField>
              <d2p1:ConditionalVisibilityValue>String</d2p1:ConditionalVisibilityValue>
              <d2p1:CustomFieldValuesUrl>String</d2p1:CustomFieldValuesUrl>
              <d2p1:DefaultValue>
                <d2p1:BoolValue>false</d2p1:BoolValue>
                <d2p1:ListValue xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    <d9p1:KeyValueOfstringValue8Ahp2kgT>
                      <d9p1:Key>String</d9p1:Key>
                      <d9p1:Value>
                        <d2p1:BoolValue>false</d2p1:BoolValue>
                        <d2p1:ListValue>
                          <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            <d9p1:KeyValueOfstringValue8Ahp2kgT>
                              <d9p1:Key>String</d9p1:Key>
                              <d9p1:Value>
                                <d2p1:BoolValue>false</d2p1:BoolValue>
                                <d2p1:ListValue>
                                  <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d9p1:Key>String</d9p1:Key>
                                      <d9p1:Value i:nil="true" />
                                    </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d2p1:ListValue>
                                <d2p1:NumberValue>0</d2p1:NumberValue>
                                <d2p1:StringValue>String</d2p1:StringValue>
                                <d2p1:StructValue>
                                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:Key>String</d9p1:Key>
                                    <d9p1:Value i:nil="true" />
                                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                </d2p1:StructValue>
                              </d9p1:Value>
                            </d9p1:KeyValueOfstringValue8Ahp2kgT>
                          </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        </d2p1:ListValue>
                        <d2p1:NumberValue>0</d2p1:NumberValue>
                        <d2p1:StringValue>String</d2p1:StringValue>
                        <d2p1:StructValue>
                          <d9p1:KeyValueOfstringValue8Ahp2kgT>
                            <d9p1:Key>String</d9p1:Key>
                            <d9p1:Value>
                              <d2p1:BoolValue>false</d2p1:BoolValue>
                              <d2p1:ListValue>
                                <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:Key>String</d9p1:Key>
                                    <d9p1:Value i:nil="true" />
                                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              </d2p1:ListValue>
                              <d2p1:NumberValue>0</d2p1:NumberValue>
                              <d2p1:StringValue>String</d2p1:StringValue>
                              <d2p1:StructValue>
                                <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:Key>String</d9p1:Key>
                                  <d9p1:Value i:nil="true" />
                                </d9p1:KeyValueOfstringValue8Ahp2kgT>
                              </d2p1:StructValue>
                            </d9p1:Value>
                          </d9p1:KeyValueOfstringValue8Ahp2kgT>
                        </d2p1:StructValue>
                      </d9p1:Value>
                    </d9p1:KeyValueOfstringValue8Ahp2kgT>
                  </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                </d2p1:ListValue>
                <d2p1:NumberValue>0</d2p1:NumberValue>
                <d2p1:StringValue>String</d2p1:StringValue>
                <d2p1:StructValue xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                    <d9p1:Key>String</d9p1:Key>
                    <d9p1:Value>
                      <d2p1:BoolValue>false</d2p1:BoolValue>
                      <d2p1:ListValue>
                        <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          <d9p1:KeyValueOfstringValue8Ahp2kgT>
                            <d9p1:Key>String</d9p1:Key>
                            <d9p1:Value>
                              <d2p1:BoolValue>false</d2p1:BoolValue>
                              <d2p1:ListValue>
                                <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:Key>String</d9p1:Key>
                                    <d9p1:Value i:nil="true" />
                                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              </d2p1:ListValue>
                              <d2p1:NumberValue>0</d2p1:NumberValue>
                              <d2p1:StringValue>String</d2p1:StringValue>
                              <d2p1:StructValue>
                                <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:Key>String</d9p1:Key>
                                  <d9p1:Value i:nil="true" />
                                </d9p1:KeyValueOfstringValue8Ahp2kgT>
                              </d2p1:StructValue>
                            </d9p1:Value>
                          </d9p1:KeyValueOfstringValue8Ahp2kgT>
                        </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      </d2p1:ListValue>
                      <d2p1:NumberValue>0</d2p1:NumberValue>
                      <d2p1:StringValue>String</d2p1:StringValue>
                      <d2p1:StructValue>
                        <d9p1:KeyValueOfstringValue8Ahp2kgT>
                          <d9p1:Key>String</d9p1:Key>
                          <d9p1:Value>
                            <d2p1:BoolValue>false</d2p1:BoolValue>
                            <d2p1:ListValue>
                              <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:Key>String</d9p1:Key>
                                  <d9p1:Value i:nil="true" />
                                </d9p1:KeyValueOfstringValue8Ahp2kgT>
                              </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d2p1:ListValue>
                            <d2p1:NumberValue>0</d2p1:NumberValue>
                            <d2p1:StringValue>String</d2p1:StringValue>
                            <d2p1:StructValue>
                              <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                <d9p1:Key>String</d9p1:Key>
                                <d9p1:Value i:nil="true" />
                              </d9p1:KeyValueOfstringValue8Ahp2kgT>
                            </d2p1:StructValue>
                          </d9p1:Value>
                        </d9p1:KeyValueOfstringValue8Ahp2kgT>
                      </d2p1:StructValue>
                    </d9p1:Value>
                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                </d2p1:StructValue>
              </d2p1:DefaultValue>
              <d2p1:Description>String</d2p1:Description>
              <d2p1:DisableBinding>false</d2p1:DisableBinding>
              <d2p1:Id>String</d2p1:Id>
              <d2p1:IsAsync>false</d2p1:IsAsync>
              <d2p1:IsOutput>false</d2p1:IsOutput>
              <d2p1:ListType>
                <d2p1:Fields>
                  <d2p1:DataField>
                    <d2p1:AnyValueType>false</d2p1:AnyValueType>
                    <d2p1:ConditionalVisibilityField>String</d2p1:ConditionalVisibilityField>
                    <d2p1:ConditionalVisibilityValue>String</d2p1:ConditionalVisibilityValue>
                    <d2p1:CustomFieldValuesUrl>String</d2p1:CustomFieldValuesUrl>
                    <d2p1:DefaultValue>
                      <d2p1:BoolValue>false</d2p1:BoolValue>
                      <d2p1:ListValue xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          <d12p1:KeyValueOfstringValue8Ahp2kgT>
                            <d12p1:Key>String</d12p1:Key>
                            <d12p1:Value>
                              <d2p1:BoolValue>false</d2p1:BoolValue>
                              <d2p1:ListValue>
                                <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d12p1:Key>String</d12p1:Key>
                                    <d12p1:Value>
                                      <d2p1:BoolValue>false</d2p1:BoolValue>
                                      <d2p1:ListValue>
                                        <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d12p1:Key>String</d12p1:Key>
                                            <d12p1:Value i:nil="true" />
                                          </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      </d2p1:ListValue>
                                      <d2p1:NumberValue>0</d2p1:NumberValue>
                                      <d2p1:StringValue>String</d2p1:StringValue>
                                      <d2p1:StructValue>
                                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:Key>String</d12p1:Key>
                                          <d12p1:Value i:nil="true" />
                                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d2p1:StructValue>
                                    </d12p1:Value>
                                  </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              </d2p1:ListValue>
                              <d2p1:NumberValue>0</d2p1:NumberValue>
                              <d2p1:StringValue>String</d2p1:StringValue>
                              <d2p1:StructValue>
                                <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d12p1:Key>String</d12p1:Key>
                                  <d12p1:Value>
                                    <d2p1:BoolValue>false</d2p1:BoolValue>
                                    <d2p1:ListValue>
                                      <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:Key>String</d12p1:Key>
                                          <d12p1:Value i:nil="true" />
                                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:ListValue>
                                    <d2p1:NumberValue>0</d2p1:NumberValue>
                                    <d2p1:StringValue>String</d2p1:StringValue>
                                    <d2p1:StructValue>
                                      <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:Key>String</d12p1:Key>
                                        <d12p1:Value i:nil="true" />
                                      </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:StructValue>
                                  </d12p1:Value>
                                </d12p1:KeyValueOfstringValue8Ahp2kgT>
                              </d2p1:StructValue>
                            </d12p1:Value>
                          </d12p1:KeyValueOfstringValue8Ahp2kgT>
                        </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      </d2p1:ListValue>
                      <d2p1:NumberValue>0</d2p1:NumberValue>
                      <d2p1:StringValue>String</d2p1:StringValue>
                      <d2p1:StructValue xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                          <d12p1:Key>String</d12p1:Key>
                          <d12p1:Value>
                            <d2p1:BoolValue>false</d2p1:BoolValue>
                            <d2p1:ListValue>
                              <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d12p1:Key>String</d12p1:Key>
                                  <d12p1:Value>
                                    <d2p1:BoolValue>false</d2p1:BoolValue>
                                    <d2p1:ListValue>
                                      <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:Key>String</d12p1:Key>
                                          <d12p1:Value i:nil="true" />
                                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:ListValue>
                                    <d2p1:NumberValue>0</d2p1:NumberValue>
                                    <d2p1:StringValue>String</d2p1:StringValue>
                                    <d2p1:StructValue>
                                      <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:Key>String</d12p1:Key>
                                        <d12p1:Value i:nil="true" />
                                      </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:StructValue>
                                  </d12p1:Value>
                                </d12p1:KeyValueOfstringValue8Ahp2kgT>
                              </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d2p1:ListValue>
                            <d2p1:NumberValue>0</d2p1:NumberValue>
                            <d2p1:StringValue>String</d2p1:StringValue>
                            <d2p1:StructValue>
                              <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                <d12p1:Key>String</d12p1:Key>
                                <d12p1:Value>
                                  <d2p1:BoolValue>false</d2p1:BoolValue>
                                  <d2p1:ListValue>
                                    <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:Key>String</d12p1:Key>
                                        <d12p1:Value i:nil="true" />
                                      </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d2p1:ListValue>
                                  <d2p1:NumberValue>0</d2p1:NumberValue>
                                  <d2p1:StringValue>String</d2p1:StringValue>
                                  <d2p1:StructValue>
                                    <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d12p1:Key>String</d12p1:Key>
                                      <d12p1:Value i:nil="true" />
                                    </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d2p1:StructValue>
                                </d12p1:Value>
                              </d12p1:KeyValueOfstringValue8Ahp2kgT>
                            </d2p1:StructValue>
                          </d12p1:Value>
                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                      </d2p1:StructValue>
                    </d2p1:DefaultValue>
                    <d2p1:Description>String</d2p1:Description>
                    <d2p1:DisableBinding>false</d2p1:DisableBinding>
                    <d2p1:Id>String</d2p1:Id>
                    <d2p1:IsAsync>false</d2p1:IsAsync>
                    <d2p1:IsOutput>false</d2p1:IsOutput>
                    <d2p1:ListType i:nil="true" />
                    <d2p1:Name>String</d2p1:Name>
                    <d2p1:NoEvalTemplate>false</d2p1:NoEvalTemplate>
                    <d2p1:PossibleValues xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:string>String</d11p1:string>
                    </d2p1:PossibleValues>
                    <d2p1:StructType i:nil="true" />
                    <d2p1:TransitionNameFormat>String</d2p1:TransitionNameFormat>
                    <d2p1:Type>NotSpecified</d2p1:Type>
                    <d2p1:UIHint>None</d2p1:UIHint>
                    <d2p1:UITab>String</d2p1:UITab>
                    <d2p1:Uniqueness>NotUnique</d2p1:Uniqueness>
                    <d2p1:UserMode>Hidden</d2p1:UserMode>
                    <d2p1:VoiceOnly>false</d2p1:VoiceOnly>
                  </d2p1:DataField>
                </d2p1:Fields>
                <d2p1:TypeName>String</d2p1:TypeName>
              </d2p1:ListType>
              <d2p1:Name>String</d2p1:Name>
              <d2p1:NoEvalTemplate>false</d2p1:NoEvalTemplate>
              <d2p1:PossibleValues xmlns:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                <d8p1:string>String</d8p1:string>
              </d2p1:PossibleValues>
              <d2p1:StructType>
                <d2p1:Fields>
                  <d2p1:DataField>
                    <d2p1:AnyValueType>false</d2p1:AnyValueType>
                    <d2p1:ConditionalVisibilityField>String</d2p1:ConditionalVisibilityField>
                    <d2p1:ConditionalVisibilityValue>String</d2p1:ConditionalVisibilityValue>
                    <d2p1:CustomFieldValuesUrl>String</d2p1:CustomFieldValuesUrl>
                    <d2p1:DefaultValue>
                      <d2p1:BoolValue>false</d2p1:BoolValue>
                      <d2p1:ListValue xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          <d12p1:KeyValueOfstringValue8Ahp2kgT>
                            <d12p1:Key>String</d12p1:Key>
                            <d12p1:Value>
                              <d2p1:BoolValue>false</d2p1:BoolValue>
                              <d2p1:ListValue>
                                <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d12p1:Key>String</d12p1:Key>
                                    <d12p1:Value>
                                      <d2p1:BoolValue>false</d2p1:BoolValue>
                                      <d2p1:ListValue>
                                        <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d12p1:Key>String</d12p1:Key>
                                            <d12p1:Value i:nil="true" />
                                          </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      </d2p1:ListValue>
                                      <d2p1:NumberValue>0</d2p1:NumberValue>
                                      <d2p1:StringValue>String</d2p1:StringValue>
                                      <d2p1:StructValue>
                                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:Key>String</d12p1:Key>
                                          <d12p1:Value i:nil="true" />
                                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d2p1:StructValue>
                                    </d12p1:Value>
                                  </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              </d2p1:ListValue>
                              <d2p1:NumberValue>0</d2p1:NumberValue>
                              <d2p1:StringValue>String</d2p1:StringValue>
                              <d2p1:StructValue>
                                <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d12p1:Key>String</d12p1:Key>
                                  <d12p1:Value>
                                    <d2p1:BoolValue>false</d2p1:BoolValue>
                                    <d2p1:ListValue>
                                      <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:Key>String</d12p1:Key>
                                          <d12p1:Value i:nil="true" />
                                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:ListValue>
                                    <d2p1:NumberValue>0</d2p1:NumberValue>
                                    <d2p1:StringValue>String</d2p1:StringValue>
                                    <d2p1:StructValue>
                                      <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:Key>String</d12p1:Key>
                                        <d12p1:Value i:nil="true" />
                                      </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:StructValue>
                                  </d12p1:Value>
                                </d12p1:KeyValueOfstringValue8Ahp2kgT>
                              </d2p1:StructValue>
                            </d12p1:Value>
                          </d12p1:KeyValueOfstringValue8Ahp2kgT>
                        </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      </d2p1:ListValue>
                      <d2p1:NumberValue>0</d2p1:NumberValue>
                      <d2p1:StringValue>String</d2p1:StringValue>
                      <d2p1:StructValue xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                          <d12p1:Key>String</d12p1:Key>
                          <d12p1:Value>
                            <d2p1:BoolValue>false</d2p1:BoolValue>
                            <d2p1:ListValue>
                              <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d12p1:Key>String</d12p1:Key>
                                  <d12p1:Value>
                                    <d2p1:BoolValue>false</d2p1:BoolValue>
                                    <d2p1:ListValue>
                                      <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:Key>String</d12p1:Key>
                                          <d12p1:Value i:nil="true" />
                                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:ListValue>
                                    <d2p1:NumberValue>0</d2p1:NumberValue>
                                    <d2p1:StringValue>String</d2p1:StringValue>
                                    <d2p1:StructValue>
                                      <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:Key>String</d12p1:Key>
                                        <d12p1:Value i:nil="true" />
                                      </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:StructValue>
                                  </d12p1:Value>
                                </d12p1:KeyValueOfstringValue8Ahp2kgT>
                              </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d2p1:ListValue>
                            <d2p1:NumberValue>0</d2p1:NumberValue>
                            <d2p1:StringValue>String</d2p1:StringValue>
                            <d2p1:StructValue>
                              <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                <d12p1:Key>String</d12p1:Key>
                                <d12p1:Value>
                                  <d2p1:BoolValue>false</d2p1:BoolValue>
                                  <d2p1:ListValue>
                                    <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:Key>String</d12p1:Key>
                                        <d12p1:Value i:nil="true" />
                                      </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d2p1:ListValue>
                                  <d2p1:NumberValue>0</d2p1:NumberValue>
                                  <d2p1:StringValue>String</d2p1:StringValue>
                                  <d2p1:StructValue>
                                    <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d12p1:Key>String</d12p1:Key>
                                      <d12p1:Value i:nil="true" />
                                    </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d2p1:StructValue>
                                </d12p1:Value>
                              </d12p1:KeyValueOfstringValue8Ahp2kgT>
                            </d2p1:StructValue>
                          </d12p1:Value>
                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                      </d2p1:StructValue>
                    </d2p1:DefaultValue>
                    <d2p1:Description>String</d2p1:Description>
                    <d2p1:DisableBinding>false</d2p1:DisableBinding>
                    <d2p1:Id>String</d2p1:Id>
                    <d2p1:IsAsync>false</d2p1:IsAsync>
                    <d2p1:IsOutput>false</d2p1:IsOutput>
                    <d2p1:ListType i:nil="true" />
                    <d2p1:Name>String</d2p1:Name>
                    <d2p1:NoEvalTemplate>false</d2p1:NoEvalTemplate>
                    <d2p1:PossibleValues xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:string>String</d11p1:string>
                    </d2p1:PossibleValues>
                    <d2p1:StructType i:nil="true" />
                    <d2p1:TransitionNameFormat>String</d2p1:TransitionNameFormat>
                    <d2p1:Type>NotSpecified</d2p1:Type>
                    <d2p1:UIHint>None</d2p1:UIHint>
                    <d2p1:UITab>String</d2p1:UITab>
                    <d2p1:Uniqueness>NotUnique</d2p1:Uniqueness>
                    <d2p1:UserMode>Hidden</d2p1:UserMode>
                    <d2p1:VoiceOnly>false</d2p1:VoiceOnly>
                  </d2p1:DataField>
                </d2p1:Fields>
                <d2p1:TypeName>String</d2p1:TypeName>
              </d2p1:StructType>
              <d2p1:TransitionNameFormat>String</d2p1:TransitionNameFormat>
              <d2p1:Type>NotSpecified</d2p1:Type>
              <d2p1:UIHint>None</d2p1:UIHint>
              <d2p1:UITab>String</d2p1:UITab>
              <d2p1:Uniqueness>NotUnique</d2p1:Uniqueness>
              <d2p1:UserMode>Hidden</d2p1:UserMode>
              <d2p1:VoiceOnly>false</d2p1:VoiceOnly>
            </d2p1:DataField>
          </d2p1:Fields>
          <d2p1:TypeName>String</d2p1:TypeName>
        </d2p1:ListType>
        <d2p1:Name>String</d2p1:Name>
        <d2p1:NoEvalTemplate>false</d2p1:NoEvalTemplate>
        <d2p1:PossibleValues xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:string>String</d5p1:string>
        </d2p1:PossibleValues>
        <d2p1:StructType>
          <d2p1:Fields>
            <d2p1:DataField>
              <d2p1:AnyValueType>false</d2p1:AnyValueType>
              <d2p1:ConditionalVisibilityField>String</d2p1:ConditionalVisibilityField>
              <d2p1:ConditionalVisibilityValue>String</d2p1:ConditionalVisibilityValue>
              <d2p1:CustomFieldValuesUrl>String</d2p1:CustomFieldValuesUrl>
              <d2p1:DefaultValue>
                <d2p1:BoolValue>false</d2p1:BoolValue>
                <d2p1:ListValue xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    <d9p1:KeyValueOfstringValue8Ahp2kgT>
                      <d9p1:Key>String</d9p1:Key>
                      <d9p1:Value>
                        <d2p1:BoolValue>false</d2p1:BoolValue>
                        <d2p1:ListValue>
                          <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            <d9p1:KeyValueOfstringValue8Ahp2kgT>
                              <d9p1:Key>String</d9p1:Key>
                              <d9p1:Value>
                                <d2p1:BoolValue>false</d2p1:BoolValue>
                                <d2p1:ListValue>
                                  <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d9p1:Key>String</d9p1:Key>
                                      <d9p1:Value i:nil="true" />
                                    </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d2p1:ListValue>
                                <d2p1:NumberValue>0</d2p1:NumberValue>
                                <d2p1:StringValue>String</d2p1:StringValue>
                                <d2p1:StructValue>
                                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:Key>String</d9p1:Key>
                                    <d9p1:Value i:nil="true" />
                                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                </d2p1:StructValue>
                              </d9p1:Value>
                            </d9p1:KeyValueOfstringValue8Ahp2kgT>
                          </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        </d2p1:ListValue>
                        <d2p1:NumberValue>0</d2p1:NumberValue>
                        <d2p1:StringValue>String</d2p1:StringValue>
                        <d2p1:StructValue>
                          <d9p1:KeyValueOfstringValue8Ahp2kgT>
                            <d9p1:Key>String</d9p1:Key>
                            <d9p1:Value>
                              <d2p1:BoolValue>false</d2p1:BoolValue>
                              <d2p1:ListValue>
                                <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:Key>String</d9p1:Key>
                                    <d9p1:Value i:nil="true" />
                                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              </d2p1:ListValue>
                              <d2p1:NumberValue>0</d2p1:NumberValue>
                              <d2p1:StringValue>String</d2p1:StringValue>
                              <d2p1:StructValue>
                                <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:Key>String</d9p1:Key>
                                  <d9p1:Value i:nil="true" />
                                </d9p1:KeyValueOfstringValue8Ahp2kgT>
                              </d2p1:StructValue>
                            </d9p1:Value>
                          </d9p1:KeyValueOfstringValue8Ahp2kgT>
                        </d2p1:StructValue>
                      </d9p1:Value>
                    </d9p1:KeyValueOfstringValue8Ahp2kgT>
                  </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                </d2p1:ListValue>
                <d2p1:NumberValue>0</d2p1:NumberValue>
                <d2p1:StringValue>String</d2p1:StringValue>
                <d2p1:StructValue xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                    <d9p1:Key>String</d9p1:Key>
                    <d9p1:Value>
                      <d2p1:BoolValue>false</d2p1:BoolValue>
                      <d2p1:ListValue>
                        <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          <d9p1:KeyValueOfstringValue8Ahp2kgT>
                            <d9p1:Key>String</d9p1:Key>
                            <d9p1:Value>
                              <d2p1:BoolValue>false</d2p1:BoolValue>
                              <d2p1:ListValue>
                                <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:Key>String</d9p1:Key>
                                    <d9p1:Value i:nil="true" />
                                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              </d2p1:ListValue>
                              <d2p1:NumberValue>0</d2p1:NumberValue>
                              <d2p1:StringValue>String</d2p1:StringValue>
                              <d2p1:StructValue>
                                <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:Key>String</d9p1:Key>
                                  <d9p1:Value i:nil="true" />
                                </d9p1:KeyValueOfstringValue8Ahp2kgT>
                              </d2p1:StructValue>
                            </d9p1:Value>
                          </d9p1:KeyValueOfstringValue8Ahp2kgT>
                        </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      </d2p1:ListValue>
                      <d2p1:NumberValue>0</d2p1:NumberValue>
                      <d2p1:StringValue>String</d2p1:StringValue>
                      <d2p1:StructValue>
                        <d9p1:KeyValueOfstringValue8Ahp2kgT>
                          <d9p1:Key>String</d9p1:Key>
                          <d9p1:Value>
                            <d2p1:BoolValue>false</d2p1:BoolValue>
                            <d2p1:ListValue>
                              <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:Key>String</d9p1:Key>
                                  <d9p1:Value i:nil="true" />
                                </d9p1:KeyValueOfstringValue8Ahp2kgT>
                              </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d2p1:ListValue>
                            <d2p1:NumberValue>0</d2p1:NumberValue>
                            <d2p1:StringValue>String</d2p1:StringValue>
                            <d2p1:StructValue>
                              <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                <d9p1:Key>String</d9p1:Key>
                                <d9p1:Value i:nil="true" />
                              </d9p1:KeyValueOfstringValue8Ahp2kgT>
                            </d2p1:StructValue>
                          </d9p1:Value>
                        </d9p1:KeyValueOfstringValue8Ahp2kgT>
                      </d2p1:StructValue>
                    </d9p1:Value>
                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                </d2p1:StructValue>
              </d2p1:DefaultValue>
              <d2p1:Description>String</d2p1:Description>
              <d2p1:DisableBinding>false</d2p1:DisableBinding>
              <d2p1:Id>String</d2p1:Id>
              <d2p1:IsAsync>false</d2p1:IsAsync>
              <d2p1:IsOutput>false</d2p1:IsOutput>
              <d2p1:ListType>
                <d2p1:Fields>
                  <d2p1:DataField>
                    <d2p1:AnyValueType>false</d2p1:AnyValueType>
                    <d2p1:ConditionalVisibilityField>String</d2p1:ConditionalVisibilityField>
                    <d2p1:ConditionalVisibilityValue>String</d2p1:ConditionalVisibilityValue>
                    <d2p1:CustomFieldValuesUrl>String</d2p1:CustomFieldValuesUrl>
                    <d2p1:DefaultValue>
                      <d2p1:BoolValue>false</d2p1:BoolValue>
                      <d2p1:ListValue xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          <d12p1:KeyValueOfstringValue8Ahp2kgT>
                            <d12p1:Key>String</d12p1:Key>
                            <d12p1:Value>
                              <d2p1:BoolValue>false</d2p1:BoolValue>
                              <d2p1:ListValue>
                                <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d12p1:Key>String</d12p1:Key>
                                    <d12p1:Value>
                                      <d2p1:BoolValue>false</d2p1:BoolValue>
                                      <d2p1:ListValue>
                                        <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d12p1:Key>String</d12p1:Key>
                                            <d12p1:Value i:nil="true" />
                                          </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      </d2p1:ListValue>
                                      <d2p1:NumberValue>0</d2p1:NumberValue>
                                      <d2p1:StringValue>String</d2p1:StringValue>
                                      <d2p1:StructValue>
                                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:Key>String</d12p1:Key>
                                          <d12p1:Value i:nil="true" />
                                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d2p1:StructValue>
                                    </d12p1:Value>
                                  </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              </d2p1:ListValue>
                              <d2p1:NumberValue>0</d2p1:NumberValue>
                              <d2p1:StringValue>String</d2p1:StringValue>
                              <d2p1:StructValue>
                                <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d12p1:Key>String</d12p1:Key>
                                  <d12p1:Value>
                                    <d2p1:BoolValue>false</d2p1:BoolValue>
                                    <d2p1:ListValue>
                                      <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:Key>String</d12p1:Key>
                                          <d12p1:Value i:nil="true" />
                                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:ListValue>
                                    <d2p1:NumberValue>0</d2p1:NumberValue>
                                    <d2p1:StringValue>String</d2p1:StringValue>
                                    <d2p1:StructValue>
                                      <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:Key>String</d12p1:Key>
                                        <d12p1:Value i:nil="true" />
                                      </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:StructValue>
                                  </d12p1:Value>
                                </d12p1:KeyValueOfstringValue8Ahp2kgT>
                              </d2p1:StructValue>
                            </d12p1:Value>
                          </d12p1:KeyValueOfstringValue8Ahp2kgT>
                        </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      </d2p1:ListValue>
                      <d2p1:NumberValue>0</d2p1:NumberValue>
                      <d2p1:StringValue>String</d2p1:StringValue>
                      <d2p1:StructValue xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                          <d12p1:Key>String</d12p1:Key>
                          <d12p1:Value>
                            <d2p1:BoolValue>false</d2p1:BoolValue>
                            <d2p1:ListValue>
                              <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d12p1:Key>String</d12p1:Key>
                                  <d12p1:Value>
                                    <d2p1:BoolValue>false</d2p1:BoolValue>
                                    <d2p1:ListValue>
                                      <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:Key>String</d12p1:Key>
                                          <d12p1:Value i:nil="true" />
                                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:ListValue>
                                    <d2p1:NumberValue>0</d2p1:NumberValue>
                                    <d2p1:StringValue>String</d2p1:StringValue>
                                    <d2p1:StructValue>
                                      <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:Key>String</d12p1:Key>
                                        <d12p1:Value i:nil="true" />
                                      </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:StructValue>
                                  </d12p1:Value>
                                </d12p1:KeyValueOfstringValue8Ahp2kgT>
                              </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d2p1:ListValue>
                            <d2p1:NumberValue>0</d2p1:NumberValue>
                            <d2p1:StringValue>String</d2p1:StringValue>
                            <d2p1:StructValue>
                              <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                <d12p1:Key>String</d12p1:Key>
                                <d12p1:Value>
                                  <d2p1:BoolValue>false</d2p1:BoolValue>
                                  <d2p1:ListValue>
                                    <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:Key>String</d12p1:Key>
                                        <d12p1:Value i:nil="true" />
                                      </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d2p1:ListValue>
                                  <d2p1:NumberValue>0</d2p1:NumberValue>
                                  <d2p1:StringValue>String</d2p1:StringValue>
                                  <d2p1:StructValue>
                                    <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d12p1:Key>String</d12p1:Key>
                                      <d12p1:Value i:nil="true" />
                                    </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d2p1:StructValue>
                                </d12p1:Value>
                              </d12p1:KeyValueOfstringValue8Ahp2kgT>
                            </d2p1:StructValue>
                          </d12p1:Value>
                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                      </d2p1:StructValue>
                    </d2p1:DefaultValue>
                    <d2p1:Description>String</d2p1:Description>
                    <d2p1:DisableBinding>false</d2p1:DisableBinding>
                    <d2p1:Id>String</d2p1:Id>
                    <d2p1:IsAsync>false</d2p1:IsAsync>
                    <d2p1:IsOutput>false</d2p1:IsOutput>
                    <d2p1:ListType i:nil="true" />
                    <d2p1:Name>String</d2p1:Name>
                    <d2p1:NoEvalTemplate>false</d2p1:NoEvalTemplate>
                    <d2p1:PossibleValues xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:string>String</d11p1:string>
                    </d2p1:PossibleValues>
                    <d2p1:StructType i:nil="true" />
                    <d2p1:TransitionNameFormat>String</d2p1:TransitionNameFormat>
                    <d2p1:Type>NotSpecified</d2p1:Type>
                    <d2p1:UIHint>None</d2p1:UIHint>
                    <d2p1:UITab>String</d2p1:UITab>
                    <d2p1:Uniqueness>NotUnique</d2p1:Uniqueness>
                    <d2p1:UserMode>Hidden</d2p1:UserMode>
                    <d2p1:VoiceOnly>false</d2p1:VoiceOnly>
                  </d2p1:DataField>
                </d2p1:Fields>
                <d2p1:TypeName>String</d2p1:TypeName>
              </d2p1:ListType>
              <d2p1:Name>String</d2p1:Name>
              <d2p1:NoEvalTemplate>false</d2p1:NoEvalTemplate>
              <d2p1:PossibleValues xmlns:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                <d8p1:string>String</d8p1:string>
              </d2p1:PossibleValues>
              <d2p1:StructType>
                <d2p1:Fields>
                  <d2p1:DataField>
                    <d2p1:AnyValueType>false</d2p1:AnyValueType>
                    <d2p1:ConditionalVisibilityField>String</d2p1:ConditionalVisibilityField>
                    <d2p1:ConditionalVisibilityValue>String</d2p1:ConditionalVisibilityValue>
                    <d2p1:CustomFieldValuesUrl>String</d2p1:CustomFieldValuesUrl>
                    <d2p1:DefaultValue>
                      <d2p1:BoolValue>false</d2p1:BoolValue>
                      <d2p1:ListValue xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          <d12p1:KeyValueOfstringValue8Ahp2kgT>
                            <d12p1:Key>String</d12p1:Key>
                            <d12p1:Value>
                              <d2p1:BoolValue>false</d2p1:BoolValue>
                              <d2p1:ListValue>
                                <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d12p1:Key>String</d12p1:Key>
                                    <d12p1:Value>
                                      <d2p1:BoolValue>false</d2p1:BoolValue>
                                      <d2p1:ListValue>
                                        <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d12p1:Key>String</d12p1:Key>
                                            <d12p1:Value i:nil="true" />
                                          </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      </d2p1:ListValue>
                                      <d2p1:NumberValue>0</d2p1:NumberValue>
                                      <d2p1:StringValue>String</d2p1:StringValue>
                                      <d2p1:StructValue>
                                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:Key>String</d12p1:Key>
                                          <d12p1:Value i:nil="true" />
                                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d2p1:StructValue>
                                    </d12p1:Value>
                                  </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              </d2p1:ListValue>
                              <d2p1:NumberValue>0</d2p1:NumberValue>
                              <d2p1:StringValue>String</d2p1:StringValue>
                              <d2p1:StructValue>
                                <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d12p1:Key>String</d12p1:Key>
                                  <d12p1:Value>
                                    <d2p1:BoolValue>false</d2p1:BoolValue>
                                    <d2p1:ListValue>
                                      <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:Key>String</d12p1:Key>
                                          <d12p1:Value i:nil="true" />
                                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:ListValue>
                                    <d2p1:NumberValue>0</d2p1:NumberValue>
                                    <d2p1:StringValue>String</d2p1:StringValue>
                                    <d2p1:StructValue>
                                      <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:Key>String</d12p1:Key>
                                        <d12p1:Value i:nil="true" />
                                      </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:StructValue>
                                  </d12p1:Value>
                                </d12p1:KeyValueOfstringValue8Ahp2kgT>
                              </d2p1:StructValue>
                            </d12p1:Value>
                          </d12p1:KeyValueOfstringValue8Ahp2kgT>
                        </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      </d2p1:ListValue>
                      <d2p1:NumberValue>0</d2p1:NumberValue>
                      <d2p1:StringValue>String</d2p1:StringValue>
                      <d2p1:StructValue xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                          <d12p1:Key>String</d12p1:Key>
                          <d12p1:Value>
                            <d2p1:BoolValue>false</d2p1:BoolValue>
                            <d2p1:ListValue>
                              <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d12p1:Key>String</d12p1:Key>
                                  <d12p1:Value>
                                    <d2p1:BoolValue>false</d2p1:BoolValue>
                                    <d2p1:ListValue>
                                      <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d12p1:Key>String</d12p1:Key>
                                          <d12p1:Value i:nil="true" />
                                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:ListValue>
                                    <d2p1:NumberValue>0</d2p1:NumberValue>
                                    <d2p1:StringValue>String</d2p1:StringValue>
                                    <d2p1:StructValue>
                                      <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:Key>String</d12p1:Key>
                                        <d12p1:Value i:nil="true" />
                                      </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d2p1:StructValue>
                                  </d12p1:Value>
                                </d12p1:KeyValueOfstringValue8Ahp2kgT>
                              </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d2p1:ListValue>
                            <d2p1:NumberValue>0</d2p1:NumberValue>
                            <d2p1:StringValue>String</d2p1:StringValue>
                            <d2p1:StructValue>
                              <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                <d12p1:Key>String</d12p1:Key>
                                <d12p1:Value>
                                  <d2p1:BoolValue>false</d2p1:BoolValue>
                                  <d2p1:ListValue>
                                    <d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d12p1:Key>String</d12p1:Key>
                                        <d12p1:Value i:nil="true" />
                                      </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d12p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d2p1:ListValue>
                                  <d2p1:NumberValue>0</d2p1:NumberValue>
                                  <d2p1:StringValue>String</d2p1:StringValue>
                                  <d2p1:StructValue>
                                    <d12p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d12p1:Key>String</d12p1:Key>
                                      <d12p1:Value i:nil="true" />
                                    </d12p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d2p1:StructValue>
                                </d12p1:Value>
                              </d12p1:KeyValueOfstringValue8Ahp2kgT>
                            </d2p1:StructValue>
                          </d12p1:Value>
                        </d12p1:KeyValueOfstringValue8Ahp2kgT>
                      </d2p1:StructValue>
                    </d2p1:DefaultValue>
                    <d2p1:Description>String</d2p1:Description>
                    <d2p1:DisableBinding>false</d2p1:DisableBinding>
                    <d2p1:Id>String</d2p1:Id>
                    <d2p1:IsAsync>false</d2p1:IsAsync>
                    <d2p1:IsOutput>false</d2p1:IsOutput>
                    <d2p1:ListType i:nil="true" />
                    <d2p1:Name>String</d2p1:Name>
                    <d2p1:NoEvalTemplate>false</d2p1:NoEvalTemplate>
                    <d2p1:PossibleValues xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:string>String</d11p1:string>
                    </d2p1:PossibleValues>
                    <d2p1:StructType i:nil="true" />
                    <d2p1:TransitionNameFormat>String</d2p1:TransitionNameFormat>
                    <d2p1:Type>NotSpecified</d2p1:Type>
                    <d2p1:UIHint>None</d2p1:UIHint>
                    <d2p1:UITab>String</d2p1:UITab>
                    <d2p1:Uniqueness>NotUnique</d2p1:Uniqueness>
                    <d2p1:UserMode>Hidden</d2p1:UserMode>
                    <d2p1:VoiceOnly>false</d2p1:VoiceOnly>
                  </d2p1:DataField>
                </d2p1:Fields>
                <d2p1:TypeName>String</d2p1:TypeName>
              </d2p1:StructType>
              <d2p1:TransitionNameFormat>String</d2p1:TransitionNameFormat>
              <d2p1:Type>NotSpecified</d2p1:Type>
              <d2p1:UIHint>None</d2p1:UIHint>
              <d2p1:UITab>String</d2p1:UITab>
              <d2p1:Uniqueness>NotUnique</d2p1:Uniqueness>
              <d2p1:UserMode>Hidden</d2p1:UserMode>
              <d2p1:VoiceOnly>false</d2p1:VoiceOnly>
            </d2p1:DataField>
          </d2p1:Fields>
          <d2p1:TypeName>String</d2p1:TypeName>
        </d2p1:StructType>
        <d2p1:TransitionNameFormat>String</d2p1:TransitionNameFormat>
        <d2p1:Type>NotSpecified</d2p1:Type>
        <d2p1:UIHint>None</d2p1:UIHint>
        <d2p1:UITab>String</d2p1:UITab>
        <d2p1:Uniqueness>NotUnique</d2p1:Uniqueness>
        <d2p1:UserMode>Hidden</d2p1:UserMode>
        <d2p1:VoiceOnly>false</d2p1:VoiceOnly>
      </d2p1:DataField>
    </d2p1:Fields>
    <d2p1:TypeName>String</d2p1:TypeName>
  </SettingsDataType>
  <Status>NotConfigured</Status>
  <StatusMessage>String</StatusMessage>
  <Type>HostedSuite</Type>
</IntegrationInfo>