Evo Voice

<back to all web services

GetIntegration

Get a specific integration

The following routes are available for this service:
GET/integrations/{integrationId}
import 'package:servicestack/servicestack.dart';

abstract class EntityInfo
{
    /**
    * The ID of the object
    */
    // @ApiMember(Description="The ID of the object")
    String? id;

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

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

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

    /**
    * The user that last modified this object
    */
    // @ApiMember(Description="The user that last modified this object")
    String? lastModifiedBy;

    EntityInfo({this.id,this.dateCreated,this.dateLastModified,this.createdBy,this.lastModifiedBy});
    EntityInfo.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'];
        dateCreated = json['dateCreated'];
        dateLastModified = json['dateLastModified'];
        createdBy = json['createdBy'];
        lastModifiedBy = json['lastModifiedBy'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id,
        'dateCreated': dateCreated,
        'dateLastModified': dateLastModified,
        'createdBy': createdBy,
        'lastModifiedBy': lastModifiedBy
    };

    getTypeName() => "EntityInfo";
    TypeContext? context = _ctx;
}

class CustomerBreadcrumb implements IConvertible
{
    String? id;
    String? name;

    CustomerBreadcrumb({this.id,this.name});
    CustomerBreadcrumb.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'];
        name = json['name'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id,
        'name': name
    };

    getTypeName() => "CustomerBreadcrumb";
    TypeContext? context = _ctx;
}

enum IntegrationTypes
{
    HostedSuite,
    OfficeRnd,
    Zoho,
}

enum IntegrationStatuses
{
    NotConfigured,
    Error,
    OK,
}

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,
}

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

class Struct extends Map<String,Value?> implements IConvertible
{
    Struct();
    Struct.fromJson(Map<String, dynamic> json) : super.fromJson(json);
    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson();
    getTypeName() => "Struct";
    TypeContext? context = _ctx;
}

class Value implements IConvertible
{
    bool? boolValue;
    String? stringValue;
    double? numberValue;
    List<Struct>? listValue;
    Struct? structValue;

    Value({this.boolValue,this.stringValue,this.numberValue,this.listValue,this.structValue});
    Value.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        boolValue = json['boolValue'];
        stringValue = json['stringValue'];
        numberValue = JsonConverters.toDouble(json['numberValue']);
        listValue = JsonConverters.fromJson(json['listValue'],'List<Struct>',context!);
        structValue = JsonConverters.fromJson(json['structValue'],'Struct',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'boolValue': boolValue,
        'stringValue': stringValue,
        'numberValue': numberValue,
        'listValue': JsonConverters.toJson(listValue,'List<Struct>',context!),
        'structValue': JsonConverters.toJson(structValue,'Struct',context!)
    };

    getTypeName() => "Value";
    TypeContext? context = _ctx;
}

enum DataFieldUniqueness
{
    NotUnique,
    Unique,
    UniqueToCustomer,
}

enum UserDataFieldModes
{
    Hidden,
    ReadOnly,
    ReadWrite,
}

class DataField implements IConvertible
{
    String? id;
    String? name;
    ValueTypes? type;
    UIHints? uiHint;
    String? uiTab;
    bool? isAsync;
    bool? disableBinding;
    DataType? structType;
    DataType? listType;
    String? description;
    List<String>? possibleValues;
    bool? isOutput;
    String? customFieldValuesUrl;
    Value? defaultValue;
    String? transitionNameFormat;
    DataFieldUniqueness? uniqueness;
    bool? voiceOnly;
    String? conditionalVisibilityField;
    String? conditionalVisibilityValue;
    bool? noEvalTemplate;
    UserDataFieldModes? userMode;
    bool? anyValueType;

    DataField({this.id,this.name,this.type,this.uiHint,this.uiTab,this.isAsync,this.disableBinding,this.structType,this.listType,this.description,this.possibleValues,this.isOutput,this.customFieldValuesUrl,this.defaultValue,this.transitionNameFormat,this.uniqueness,this.voiceOnly,this.conditionalVisibilityField,this.conditionalVisibilityValue,this.noEvalTemplate,this.userMode,this.anyValueType});
    DataField.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'];
        name = json['name'];
        type = JsonConverters.fromJson(json['type'],'ValueTypes',context!);
        uiHint = JsonConverters.fromJson(json['uiHint'],'UIHints',context!);
        uiTab = json['uiTab'];
        isAsync = json['isAsync'];
        disableBinding = json['disableBinding'];
        structType = JsonConverters.fromJson(json['structType'],'DataType',context!);
        listType = JsonConverters.fromJson(json['listType'],'DataType',context!);
        description = json['description'];
        possibleValues = JsonConverters.fromJson(json['possibleValues'],'List<String>',context!);
        isOutput = json['isOutput'];
        customFieldValuesUrl = json['customFieldValuesUrl'];
        defaultValue = JsonConverters.fromJson(json['defaultValue'],'Value',context!);
        transitionNameFormat = json['transitionNameFormat'];
        uniqueness = JsonConverters.fromJson(json['uniqueness'],'DataFieldUniqueness',context!);
        voiceOnly = json['voiceOnly'];
        conditionalVisibilityField = json['conditionalVisibilityField'];
        conditionalVisibilityValue = json['conditionalVisibilityValue'];
        noEvalTemplate = json['noEvalTemplate'];
        userMode = JsonConverters.fromJson(json['userMode'],'UserDataFieldModes',context!);
        anyValueType = json['anyValueType'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id,
        'name': name,
        'type': JsonConverters.toJson(type,'ValueTypes',context!),
        'uiHint': JsonConverters.toJson(uiHint,'UIHints',context!),
        'uiTab': uiTab,
        'isAsync': isAsync,
        'disableBinding': disableBinding,
        'structType': JsonConverters.toJson(structType,'DataType',context!),
        'listType': JsonConverters.toJson(listType,'DataType',context!),
        'description': description,
        'possibleValues': JsonConverters.toJson(possibleValues,'List<String>',context!),
        'isOutput': isOutput,
        'customFieldValuesUrl': customFieldValuesUrl,
        'defaultValue': JsonConverters.toJson(defaultValue,'Value',context!),
        'transitionNameFormat': transitionNameFormat,
        'uniqueness': JsonConverters.toJson(uniqueness,'DataFieldUniqueness',context!),
        'voiceOnly': voiceOnly,
        'conditionalVisibilityField': conditionalVisibilityField,
        'conditionalVisibilityValue': conditionalVisibilityValue,
        'noEvalTemplate': noEvalTemplate,
        'userMode': JsonConverters.toJson(userMode,'UserDataFieldModes',context!),
        'anyValueType': anyValueType
    };

    getTypeName() => "DataField";
    TypeContext? context = _ctx;
}

class DataType implements IConvertible
{
    String? typeName;
    List<DataField>? fields;

    DataType({this.typeName,this.fields});
    DataType.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        typeName = json['typeName'];
        fields = JsonConverters.fromJson(json['fields'],'List<DataField>',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'typeName': typeName,
        'fields': JsonConverters.toJson(fields,'List<DataField>',context!)
    };

    getTypeName() => "DataType";
    TypeContext? context = _ctx;
}

enum IntegrationFeatures
{
    CrmSync,
    OAuth2,
}

class IntegrationInfo extends EntityInfo implements IConvertible
{
    /**
    * The ID of the account associated with this integration
    */
    // @ApiMember(Description="The ID of the account associated with this integration")
    String? accountId;

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

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

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

    /**
    * The breadcrumb to the customer for this integration
    */
    // @ApiMember(Description="The breadcrumb to the customer for this integration")
    List<CustomerBreadcrumb>? customerBreadcrumb;

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

    /**
    * Automatically create new customers / users when sync'ing with CRM?
    */
    // @ApiMember(Description="Automatically create new customers / users when sync'ing with CRM?")
    bool? automaticallyCreateCustomers;

    /**
    * The type of integration
    */
    // @ApiMember(Description="The type of integration")
    IntegrationTypes? type;

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

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

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

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

    /**
    * The features supported by this integration
    */
    // @ApiMember(Description="The features supported by this integration")
    List<IntegrationFeatures>? features;

    /**
    * Is this integration authorized (OAuth)?
    */
    // @ApiMember(Description="Is this integration authorized (OAuth)?")
    bool? isAuthorized;

    IntegrationInfo({this.accountId,this.customerId,this.customerName,this.dateLastSync,this.customerBreadcrumb,this.name,this.automaticallyCreateCustomers,this.type,this.status,this.statusMessage,this.settingsDataType,this.settings,this.features,this.isAuthorized});
    IntegrationInfo.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        accountId = json['accountId'];
        customerId = json['customerId'];
        customerName = json['customerName'];
        dateLastSync = json['dateLastSync'];
        customerBreadcrumb = JsonConverters.fromJson(json['customerBreadcrumb'],'List<CustomerBreadcrumb>',context!);
        name = json['name'];
        automaticallyCreateCustomers = json['automaticallyCreateCustomers'];
        type = JsonConverters.fromJson(json['type'],'IntegrationTypes',context!);
        status = JsonConverters.fromJson(json['status'],'IntegrationStatuses',context!);
        statusMessage = json['statusMessage'];
        settingsDataType = JsonConverters.fromJson(json['settingsDataType'],'DataType',context!);
        settings = JsonConverters.fromJson(json['settings'],'Struct',context!);
        features = JsonConverters.fromJson(json['features'],'List<IntegrationFeatures>',context!);
        isAuthorized = json['isAuthorized'];
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'accountId': accountId,
        'customerId': customerId,
        'customerName': customerName,
        'dateLastSync': dateLastSync,
        'customerBreadcrumb': JsonConverters.toJson(customerBreadcrumb,'List<CustomerBreadcrumb>',context!),
        'name': name,
        'automaticallyCreateCustomers': automaticallyCreateCustomers,
        'type': JsonConverters.toJson(type,'IntegrationTypes',context!),
        'status': JsonConverters.toJson(status,'IntegrationStatuses',context!),
        'statusMessage': statusMessage,
        'settingsDataType': JsonConverters.toJson(settingsDataType,'DataType',context!),
        'settings': JsonConverters.toJson(settings,'Struct',context!),
        'features': JsonConverters.toJson(features,'List<IntegrationFeatures>',context!),
        'isAuthorized': isAuthorized
    });

    getTypeName() => "IntegrationInfo";
    TypeContext? context = _ctx;
}

/**
* Get a specific integration
*/
// @Api(Description="Get a specific integration")
class GetIntegration implements IGet, IConvertible
{
    /**
    * The ID of the integration you want to get
    */
    // @ApiMember(Description="The ID of the integration you want to get")
    String? integrationId;

    GetIntegration({this.integrationId});
    GetIntegration.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        integrationId = json['integrationId'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'integrationId': integrationId
    };

    getTypeName() => "GetIntegration";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'evovoice.io', types: <String, TypeInfo> {
    'EntityInfo': TypeInfo(TypeOf.AbstractClass),
    'CustomerBreadcrumb': TypeInfo(TypeOf.Class, create:() => CustomerBreadcrumb()),
    'IntegrationTypes': TypeInfo(TypeOf.Enum, enumValues:IntegrationTypes.values),
    'IntegrationStatuses': TypeInfo(TypeOf.Enum, enumValues:IntegrationStatuses.values),
    'ValueTypes': TypeInfo(TypeOf.Enum, enumValues:ValueTypes.values),
    'UIHints': TypeInfo(TypeOf.Enum, enumValues:UIHints.values),
    'Struct': TypeInfo(TypeOf.Class, create:() => Struct()),
    'Value': TypeInfo(TypeOf.Class, create:() => Value()),
    'List<Struct>': TypeInfo(TypeOf.Class, create:() => <Struct>[]),
    'DataFieldUniqueness': TypeInfo(TypeOf.Enum, enumValues:DataFieldUniqueness.values),
    'UserDataFieldModes': TypeInfo(TypeOf.Enum, enumValues:UserDataFieldModes.values),
    'DataField': TypeInfo(TypeOf.Class, create:() => DataField()),
    'DataType': TypeInfo(TypeOf.Class, create:() => DataType()),
    'List<DataField>': TypeInfo(TypeOf.Class, create:() => <DataField>[]),
    'IntegrationFeatures': TypeInfo(TypeOf.Enum, enumValues:IntegrationFeatures.values),
    'IntegrationInfo': TypeInfo(TypeOf.Class, create:() => IntegrationInfo()),
    'List<CustomerBreadcrumb>': TypeInfo(TypeOf.Class, create:() => <CustomerBreadcrumb>[]),
    'List<IntegrationFeatures>': TypeInfo(TypeOf.Class, create:() => <IntegrationFeatures>[]),
    'GetIntegration': TypeInfo(TypeOf.Class, create:() => GetIntegration()),
});

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