Evo Voice

<back to all web services

ListIntegrations

Retrieve integrations

The following routes are available for this service:
GET/integrations
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum


class SortOrders(str, Enum):
    ASCEND = 'Ascend'
    DESCEND = 'Descend'


T = TypeVar('T')


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class ListRequest(Generic[T], IReturn[ListResponse[T]], IGet):
    # @ApiMember(Description="The page of data to retrieve")
    page: Optional[int] = None
    """
    The page of data to retrieve
    """


    # @ApiMember(Description="If you want all objects to be returned. This should be used with care")
    all: Optional[bool] = None
    """
    If you want all objects to be returned. This should be used with care
    """


    # @ApiMember(Description="The number per page to retrieve")
    count_per_page: Optional[int] = None
    """
    The number per page to retrieve
    """


    # @ApiMember(Description="Specific IDs")
    specific_ids: Optional[List[str]] = None
    """
    Specific IDs
    """


    # @ApiMember(Description="Specify a sort field")
    sort_field: Optional[str] = None
    """
    Specify a sort field
    """


    # @ApiMember(Description="Specify a sort order")
    sort_order: Optional[SortOrders] = None
    """
    Specify a sort order
    """


    # @ApiMember(Description="Disables total / page counts - improves performance. Returns only data. If there is no more data, Items will be empty array")
    simplified_paging: Optional[bool] = None
    """
    Disables total / page counts - improves performance. Returns only data. If there is no more data, Items will be empty array
    """
    @staticmethod
    def response_type(): return ListResponse[T]


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class EntityInfo:
    # @ApiMember(Description="The ID of the object")
    id: Optional[str] = None
    """
    The ID of the object
    """


    # @ApiMember(Description="The date the object was created")
    date_created: Optional[str] = None
    """
    The date the object was created
    """


    # @ApiMember(Description="The date the object was last modified")
    date_last_modified: Optional[str] = None
    """
    The date the object was last modified
    """


    # @ApiMember(Description="The user that created this object")
    created_by: Optional[str] = None
    """
    The user that created this object
    """


    # @ApiMember(Description="The user that last modified this object")
    last_modified_by: Optional[str] = None
    """
    The user that last modified this object
    """


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class CustomerBreadcrumb:
    id: Optional[str] = None
    name: Optional[str] = None


class IntegrationTypes(str, Enum):
    HOSTED_SUITE = 'HostedSuite'
    OFFICE_RND = 'OfficeRnd'
    ZOHO = 'Zoho'


class IntegrationStatuses(str, Enum):
    NOT_CONFIGURED = 'NotConfigured'
    ERROR = 'Error'
    OK = 'OK'


class ValueTypes(str, Enum):
    NOT_SPECIFIED = 'NotSpecified'
    STRING = 'String'
    BOOLEAN = 'Boolean'
    NUMBER = 'Number'
    LIST = 'List'
    STRUCT = 'Struct'
    TRANSITION = 'Transition'
    CUSTOM = 'Custom'
    DATE = 'Date'
    AUDIO_FILE = 'AudioFile'
    TIME_ZONE_ID = 'TimeZoneId'
    PHONE_NUMBER = 'PhoneNumber'
    USER = 'User'
    ENDPOINT = 'Endpoint'
    TIME = 'Time'
    FILE = 'File'
    FAX_NUMBER = 'FaxNumber'
    EMAIL_ACCOUNT = 'EmailAccount'
    CUSTOMER = 'Customer'
    FLOW = 'Flow'
    TEAM = 'Team'
    FLOW_REFERENCE = 'FlowReference'
    INTEGRATION = 'Integration'


class UIHints(str, Enum):
    NONE = 'None'
    LARGE_TEXT = 'LargeText'
    INLINE_FORM = 'InlineForm'
    PASSWORD = 'Password'
    INLINE_STRUCT = 'InlineStruct'


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Struct(Dict[str,Value]):
    pass


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Value:
    bool_value: Optional[bool] = None
    string_value: Optional[str] = None
    number_value: Optional[float] = None
    list_value: Optional[List[Struct]] = None
    struct_value: Optional[Struct] = None


class DataFieldUniqueness(str, Enum):
    NOT_UNIQUE = 'NotUnique'
    UNIQUE = 'Unique'
    UNIQUE_TO_CUSTOMER = 'UniqueToCustomer'


class UserDataFieldModes(str, Enum):
    HIDDEN = 'Hidden'
    READ_ONLY = 'ReadOnly'
    READ_WRITE = 'ReadWrite'


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class DataField:
    id: Optional[str] = None
    name: Optional[str] = None
    type: Optional[ValueTypes] = None
    ui_hint: Optional[UIHints] = None
    ui_tab: Optional[str] = None
    is_async: Optional[bool] = None
    disable_binding: Optional[bool] = None
    struct_type: Optional[DataType] = None
    list_type: Optional[DataType] = None
    description: Optional[str] = None
    possible_values: Optional[List[str]] = None
    is_output: Optional[bool] = None
    custom_field_values_url: Optional[str] = None
    default_value: Optional[Value] = None
    transition_name_format: Optional[str] = None
    uniqueness: Optional[DataFieldUniqueness] = None
    voice_only: Optional[bool] = None
    conditional_visibility_field: Optional[str] = None
    conditional_visibility_value: Optional[str] = None
    no_eval_template: Optional[bool] = None
    user_mode: Optional[UserDataFieldModes] = None
    any_value_type: Optional[bool] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class DataType:
    type_name: Optional[str] = None
    fields: Optional[List[DataField]] = None


class IntegrationFeatures(str, Enum):
    CRM_SYNC = 'CrmSync'
    O_AUTH2 = 'OAuth2'


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class IntegrationInfo(EntityInfo):
    # @ApiMember(Description="The ID of the account associated with this integration")
    account_id: Optional[str] = None
    """
    The ID of the account associated with this integration
    """


    # @ApiMember(Description="The ID of the customer this integration is associated with")
    customer_id: Optional[str] = None
    """
    The ID of the customer this integration is associated with
    """


    # @ApiMember(Description="The name of the customer this integration is associated with")
    customer_name: Optional[str] = None
    """
    The name of the customer this integration is associated with
    """


    # @ApiMember(Description="The date the integration was sync'd last")
    date_last_sync: Optional[str] = None
    """
    The date the integration was sync'd last
    """


    # @ApiMember(Description="The breadcrumb to the customer for this integration")
    customer_breadcrumb: Optional[List[CustomerBreadcrumb]] = None
    """
    The breadcrumb to the customer for this integration
    """


    # @ApiMember(Description="The name of the integration (e.g. HostedSuite Dallas)")
    name: Optional[str] = None
    """
    The name of the integration (e.g. HostedSuite Dallas)
    """


    # @ApiMember(Description="Automatically create new customers / users when sync'ing with CRM?")
    automatically_create_customers: Optional[bool] = None
    """
    Automatically create new customers / users when sync'ing with CRM?
    """


    # @ApiMember(Description="The type of integration")
    type: Optional[IntegrationTypes] = None
    """
    The type of integration
    """


    # @ApiMember(Description="The status of the integration")
    status: Optional[IntegrationStatuses] = None
    """
    The status of the integration
    """


    # @ApiMember(Description="The status of the integration")
    status_message: Optional[str] = None
    """
    The status of the integration
    """


    # @ApiMember(Description="The settings type for this integration")
    settings_data_type: Optional[DataType] = None
    """
    The settings type for this integration
    """


    # @ApiMember(Description="The settings for this integration")
    settings: Optional[Struct] = None
    """
    The settings for this integration
    """


    # @ApiMember(Description="The features supported by this integration")
    features: Optional[List[IntegrationFeatures]] = None
    """
    The features supported by this integration
    """


    # @ApiMember(Description="Is this integration authorized (OAuth)?")
    is_authorized: Optional[bool] = None
    """
    Is this integration authorized (OAuth)?
    """


# @Api(Description="Retrieve integrations")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class ListIntegrations(ListRequest[IntegrationInfo]):
    """
    Retrieve integrations
    """

    # @ApiMember(Description="Filter by accounts")
    account_ids: Optional[List[str]] = None
    """
    Filter by accounts
    """


    # @ApiMember(Description="Filter by name")
    name_filter: Optional[str] = None
    """
    Filter by name
    """


    # @ApiMember(Description="The IDs of the parent customers you want to filter by")
    customer_ids: Optional[List[str]] = None
    """
    The IDs of the parent customers you want to filter by
    """


    # @ApiMember(Description="If you want a shall customer integration filter (e.g. no deep children)")
    shallow_parent: Optional[bool] = None
    """
    If you want a shall customer integration filter (e.g. no deep children)
    """


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class BillingItem:
    base_cost: Optional[float] = None
    raw_unit_multiplier: Optional[float] = None
    unit_cost: Optional[float] = None
    allowance: Optional[int] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class BillingSettings:
    base: Optional[BillingItem] = None
    local_numbers: Optional[BillingItem] = None
    toll_free_numbers: Optional[BillingItem] = None
    inbound_voice_calls: Optional[BillingItem] = None
    outbound_voice_calls: Optional[BillingItem] = None
    inbound_faxes: Optional[BillingItem] = None
    outbound_faxes: Optional[BillingItem] = None
    inbound_sms_messages: Optional[BillingItem] = None
    outbound_sms_messages: Optional[BillingItem] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class AccountInfo(EntityInfo):
    # @ApiMember(Description="The name of this account")
    name: Optional[str] = None
    """
    The name of this account
    """


    # @ApiMember(Description="The ID of this account's parent")
    parent_account_id: Optional[str] = None
    """
    The ID of this account's parent
    """


    # @ApiMember(Description="The twilio account SID")
    twilio_account_sid: Optional[str] = None
    """
    The twilio account SID
    """


    # @ApiMember(Description="The ancestors of this account. Useful for breadcrumbs")
    ancestor_ids: Optional[List[str]] = None
    """
    The ancestors of this account. Useful for breadcrumbs
    """


    # @ApiMember(Description="The max number of phone numbers this account can have")
    max_phone_numbers: Optional[int] = None
    """
    The max number of phone numbers this account can have
    """


    # @ApiMember(Description="This account is BYOA")
    is_b_y_o_a: Optional[bool] = None
    """
    This account is BYOA
    """


    # @ApiMember(Description="TrustHub Profile Sid")
    trust_hub_profile_sid: Optional[str] = None
    """
    TrustHub Profile Sid
    """


    # @ApiMember(Description="The ID of the logo file")
    logo_id: Optional[str] = None
    """
    The ID of the logo file
    """


    # @ApiMember(Description="The URI of the logo file")
    logo_uri: Optional[str] = None
    """
    The URI of the logo file
    """


    # @ApiMember(Description="The billing settings for this account")
    billing_settings: Optional[BillingSettings] = None
    """
    The billing settings for this account
    """


AccountInfo = TypeVar('AccountInfo')


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class ListResponse(Generic[AccountInfo]):
    # @ApiMember(Description="The items")
    items: Optional[List[AccountInfo]] = None
    """
    The items
    """


    # @ApiMember(Description="The total number of items")
    total_count: Optional[int] = None
    """
    The total number of items
    """


    # @ApiMember(Description="The total number of pages")
    total_pages: Optional[int] = None
    """
    The total number of pages
    """


    # @ApiMember(Description="Are there more pages of items? Used with simplified paging")
    has_more_pages: Optional[bool] = None
    """
    Are there more pages of items? Used with simplified paging
    """

Python ListIntegrations 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 HTTP/1.1 
Host: evovoice.io 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

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