Evo Voice

<back to all web services

GetIntegration

Get a specific integration

The following routes are available for this service:
GET/integrations/{integrationId}
import java.math.*
import java.util.*
import net.servicestack.client.*
import com.google.gson.annotations.*
import com.google.gson.reflect.*


/**
* Get a specific integration
*/
@Api(Description="Get a specific integration")
open class GetIntegration : IGet
{
    /**
    * The ID of the integration you want to get
    */
    @ApiMember(Description="The ID of the integration you want to get")
    var integrationId:String? = null
}

open class IntegrationInfo : EntityInfo()
{
    /**
    * The ID of the account associated with this integration
    */
    @ApiMember(Description="The ID of the account associated with this integration")
    var accountId:String? = null

    /**
    * The ID of the customer this integration is associated with
    */
    @ApiMember(Description="The ID of the customer this integration is associated with")
    var customerId:String? = null

    /**
    * The name of the customer this integration is associated with
    */
    @ApiMember(Description="The name of the customer this integration is associated with")
    var customerName:String? = null

    /**
    * The date the integration was sync'd last
    */
    @ApiMember(Description="The date the integration was sync'd last")
    var dateLastSync:String? = null

    /**
    * The breadcrumb to the customer for this integration
    */
    @ApiMember(Description="The breadcrumb to the customer for this integration")
    var customerBreadcrumb:ArrayList<CustomerBreadcrumb> = ArrayList<CustomerBreadcrumb>()

    /**
    * The name of the integration (e.g. HostedSuite Dallas)
    */
    @ApiMember(Description="The name of the integration (e.g. HostedSuite Dallas)")
    var name:String? = null

    /**
    * Automatically create new customers / users when sync'ing with CRM?
    */
    @ApiMember(Description="Automatically create new customers / users when sync'ing with CRM?")
    var automaticallyCreateCustomers:Boolean? = null

    /**
    * The type of integration
    */
    @ApiMember(Description="The type of integration")
    @SerializedName("type") var Type:IntegrationTypes? = null

    /**
    * The status of the integration
    */
    @ApiMember(Description="The status of the integration")
    var status:IntegrationStatuses? = null

    /**
    * The status of the integration
    */
    @ApiMember(Description="The status of the integration")
    var statusMessage:String? = null

    /**
    * The settings type for this integration
    */
    @ApiMember(Description="The settings type for this integration")
    var settingsDataType:DataType? = null

    /**
    * The settings for this integration
    */
    @ApiMember(Description="The settings for this integration")
    var settings:Struct? = null

    /**
    * The features supported by this integration
    */
    @ApiMember(Description="The features supported by this integration")
    var features:ArrayList<IntegrationFeatures> = ArrayList<IntegrationFeatures>()

    /**
    * Is this integration authorized (OAuth)?
    */
    @ApiMember(Description="Is this integration authorized (OAuth)?")
    var isAuthorized:Boolean? = null
}

open class EntityInfo
{
    /**
    * The ID of the object
    */
    @ApiMember(Description="The ID of the object")
    var id:String? = null

    /**
    * The date the object was created
    */
    @ApiMember(Description="The date the object was created")
    var dateCreated:String? = null

    /**
    * The date the object was last modified
    */
    @ApiMember(Description="The date the object was last modified")
    var dateLastModified:String? = null

    /**
    * The user that created this object
    */
    @ApiMember(Description="The user that created this object")
    var createdBy:String? = null

    /**
    * The user that last modified this object
    */
    @ApiMember(Description="The user that last modified this object")
    var lastModifiedBy:String? = null
}

open class CustomerBreadcrumb
{
    var id:String? = null
    var name:String? = null
}

enum class IntegrationTypes
{
    HostedSuite,
    OfficeRnd,
    Zoho,
}

enum class IntegrationStatuses
{
    NotConfigured,
    Error,
    Ok,
}

open class DataType
{
    var typeName:String? = null
    var fields:ArrayList<DataField> = ArrayList<DataField>()
}

open class DataField
{
    var id:String? = null
    var name:String? = null
    @SerializedName("type") var Type:ValueTypes? = null
    var uiHint:UIHints? = null
    var uiTab:String? = null
    var isAsync:Boolean? = null
    var disableBinding:Boolean? = null
    var structType:DataType? = null
    var listType:DataType? = null
    var description:String? = null
    var possibleValues:ArrayList<String> = ArrayList<String>()
    var isOutput:Boolean? = null
    var customFieldValuesUrl:String? = null
    var defaultValue:Value? = null
    var transitionNameFormat:String? = null
    var uniqueness:DataFieldUniqueness? = null
    var voiceOnly:Boolean? = null
    var conditionalVisibilityField:String? = null
    var conditionalVisibilityValue:String? = null
    var noEvalTemplate:Boolean? = null
    var userMode:UserDataFieldModes? = null
    var anyValueType:Boolean? = null
}

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

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

open class Value
{
    var boolValue:Boolean? = null
    var stringValue:String? = null
    var numberValue:Double? = null
    var listValue:ArrayList<Struct> = ArrayList<Struct>()
    var structValue:Struct? = null
}

open class Struct : HashMap<String,Value>()
{
}

enum class DataFieldUniqueness
{
    NotUnique,
    Unique,
    UniqueToCustomer,
}

enum class UserDataFieldModes
{
    Hidden,
    ReadOnly,
    ReadWrite,
}

enum class IntegrationFeatures
{
    CrmSync,
    OAuth2,
}

Kotlin 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>