Evo Voice

<back to all web services

ListSettingsObjects

Get all configurable settings objects for the authenticated user

Requires Authentication
Required role:User
The following routes are available for this service:
GET/app/settings-objects
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 SettingsObjectTypes(str, Enum):
    ENDPOINT = 'Endpoint'
    CUSTOMER = 'Customer'


class EndpointTypes(str, Enum):
    PHONE_NUMBER = 'PhoneNumber'
    USER = 'User'
    FAX_NUMBER = 'FaxNumber'
    EMAIL_ADDRESS = 'EmailAddress'
    UNUSED_1 = 'Unused_1'
    UNUSED_2 = 'Unused_2'
    UNUSED_3 = 'Unused_3'
    UNUSED_4 = 'Unused_4'
    UNUSED_5 = 'Unused_5'
    TEAM = 'Team'


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'


@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


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class SettingsPossibleValue:
    display_name: Optional[str] = None
    value: Optional[Value] = None


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 DataType:
    type_name: Optional[str] = None
    fields: Optional[List[DataField]] = 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 SettingsField:
    name: Optional[str] = None
    display_name: Optional[str] = None
    type: Optional[ValueTypes] = None
    value: Optional[Value] = None
    read_only: Optional[bool] = None
    possible_values: Optional[List[SettingsPossibleValue]] = None
    data_field: Optional[DataField] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class SettingsObject:
    id: Optional[str] = None
    name: Optional[str] = None
    description: Optional[str] = None
    read_only: Optional[bool] = None
    type: Optional[SettingsObjectTypes] = None
    endpoint_type: Optional[EndpointTypes] = None
    fields: Optional[List[SettingsField]] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class ListSettingsObjectsResponse:
    settings_objects: Optional[List[SettingsObject]] = None


# @Api(Description="Get all configurable settings objects for the authenticated user")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class ListSettingsObjects(IGet):
    """
    Get all configurable settings objects for the authenticated user
    """

    pass

Python ListSettingsObjects DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /app/settings-objects HTTP/1.1 
Host: evovoice.io 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<ListSettingsObjectsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.App">
  <SettingsObjects>
    <SettingsObject>
      <Description>String</Description>
      <EndpointType>PhoneNumber</EndpointType>
      <Fields>
        <SettingsField>
          <DataField xmlns:d6p1="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">
            <d6p1:AnyValueType>false</d6p1:AnyValueType>
            <d6p1:ConditionalVisibilityField>String</d6p1:ConditionalVisibilityField>
            <d6p1:ConditionalVisibilityValue>String</d6p1:ConditionalVisibilityValue>
            <d6p1:CustomFieldValuesUrl>String</d6p1:CustomFieldValuesUrl>
            <d6p1:DefaultValue>
              <d6p1:BoolValue>false</d6p1:BoolValue>
              <d6p1:ListValue xmlns:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                <d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                  <d8p1:KeyValueOfstringValue8Ahp2kgT>
                    <d8p1:Key>String</d8p1:Key>
                    <d8p1:Value>
                      <d6p1:BoolValue>false</d6p1:BoolValue>
                      <d6p1:ListValue>
                        <d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          <d8p1:KeyValueOfstringValue8Ahp2kgT>
                            <d8p1:Key>String</d8p1:Key>
                            <d8p1:Value>
                              <d6p1:BoolValue>false</d6p1:BoolValue>
                              <d6p1:ListValue>
                                <d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  <d8p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d8p1:Key>String</d8p1:Key>
                                    <d8p1:Value i:nil="true" />
                                  </d8p1:KeyValueOfstringValue8Ahp2kgT>
                                </d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              </d6p1:ListValue>
                              <d6p1:NumberValue>0</d6p1:NumberValue>
                              <d6p1:StringValue>String</d6p1:StringValue>
                              <d6p1:StructValue>
                                <d8p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d8p1:Key>String</d8p1:Key>
                                  <d8p1:Value i:nil="true" />
                                </d8p1:KeyValueOfstringValue8Ahp2kgT>
                              </d6p1:StructValue>
                            </d8p1:Value>
                          </d8p1:KeyValueOfstringValue8Ahp2kgT>
                        </d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      </d6p1:ListValue>
                      <d6p1:NumberValue>0</d6p1:NumberValue>
                      <d6p1:StringValue>String</d6p1:StringValue>
                      <d6p1:StructValue>
                        <d8p1:KeyValueOfstringValue8Ahp2kgT>
                          <d8p1:Key>String</d8p1:Key>
                          <d8p1:Value>
                            <d6p1:BoolValue>false</d6p1:BoolValue>
                            <d6p1:ListValue>
                              <d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d8p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d8p1:Key>String</d8p1:Key>
                                  <d8p1:Value i:nil="true" />
                                </d8p1:KeyValueOfstringValue8Ahp2kgT>
                              </d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d6p1:ListValue>
                            <d6p1:NumberValue>0</d6p1:NumberValue>
                            <d6p1:StringValue>String</d6p1:StringValue>
                            <d6p1:StructValue>
                              <d8p1:KeyValueOfstringValue8Ahp2kgT>
                                <d8p1:Key>String</d8p1:Key>
                                <d8p1:Value i:nil="true" />
                              </d8p1:KeyValueOfstringValue8Ahp2kgT>
                            </d6p1:StructValue>
                          </d8p1:Value>
                        </d8p1:KeyValueOfstringValue8Ahp2kgT>
                      </d6p1:StructValue>
                    </d8p1:Value>
                  </d8p1:KeyValueOfstringValue8Ahp2kgT>
                </d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
              </d6p1:ListValue>
              <d6p1:NumberValue>0</d6p1:NumberValue>
              <d6p1:StringValue>String</d6p1:StringValue>
              <d6p1:StructValue xmlns:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                <d8p1:KeyValueOfstringValue8Ahp2kgT>
                  <d8p1:Key>String</d8p1:Key>
                  <d8p1:Value>
                    <d6p1:BoolValue>false</d6p1:BoolValue>
                    <d6p1:ListValue>
                      <d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        <d8p1:KeyValueOfstringValue8Ahp2kgT>
                          <d8p1:Key>String</d8p1:Key>
                          <d8p1:Value>
                            <d6p1:BoolValue>false</d6p1:BoolValue>
                            <d6p1:ListValue>
                              <d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d8p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d8p1:Key>String</d8p1:Key>
                                  <d8p1:Value i:nil="true" />
                                </d8p1:KeyValueOfstringValue8Ahp2kgT>
                              </d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d6p1:ListValue>
                            <d6p1:NumberValue>0</d6p1:NumberValue>
                            <d6p1:StringValue>String</d6p1:StringValue>
                            <d6p1:StructValue>
                              <d8p1:KeyValueOfstringValue8Ahp2kgT>
                                <d8p1:Key>String</d8p1:Key>
                                <d8p1:Value i:nil="true" />
                              </d8p1:KeyValueOfstringValue8Ahp2kgT>
                            </d6p1:StructValue>
                          </d8p1:Value>
                        </d8p1:KeyValueOfstringValue8Ahp2kgT>
                      </d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    </d6p1:ListValue>
                    <d6p1:NumberValue>0</d6p1:NumberValue>
                    <d6p1:StringValue>String</d6p1:StringValue>
                    <d6p1:StructValue>
                      <d8p1:KeyValueOfstringValue8Ahp2kgT>
                        <d8p1:Key>String</d8p1:Key>
                        <d8p1:Value>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue>
                            <d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d8p1:KeyValueOfstringValue8Ahp2kgT>
                                <d8p1:Key>String</d8p1:Key>
                                <d8p1:Value i:nil="true" />
                              </d8p1:KeyValueOfstringValue8Ahp2kgT>
                            </d8p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue>
                            <d8p1:KeyValueOfstringValue8Ahp2kgT>
                              <d8p1:Key>String</d8p1:Key>
                              <d8p1:Value i:nil="true" />
                            </d8p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d8p1:Value>
                      </d8p1:KeyValueOfstringValue8Ahp2kgT>
                    </d6p1:StructValue>
                  </d8p1:Value>
                </d8p1:KeyValueOfstringValue8Ahp2kgT>
              </d6p1:StructValue>
            </d6p1:DefaultValue>
            <d6p1:Description>String</d6p1:Description>
            <d6p1:DisableBinding>false</d6p1:DisableBinding>
            <d6p1:Id>String</d6p1:Id>
            <d6p1:IsAsync>false</d6p1:IsAsync>
            <d6p1:IsOutput>false</d6p1:IsOutput>
            <d6p1:ListType>
              <d6p1:Fields>
                <d6p1:DataField>
                  <d6p1:AnyValueType>false</d6p1:AnyValueType>
                  <d6p1:ConditionalVisibilityField>String</d6p1:ConditionalVisibilityField>
                  <d6p1:ConditionalVisibilityValue>String</d6p1:ConditionalVisibilityValue>
                  <d6p1:CustomFieldValuesUrl>String</d6p1:CustomFieldValuesUrl>
                  <d6p1:DefaultValue>
                    <d6p1:BoolValue>false</d6p1:BoolValue>
                    <d6p1:ListValue xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        <d11p1:KeyValueOfstringValue8Ahp2kgT>
                          <d11p1:Key>String</d11p1:Key>
                          <d11p1:Value>
                            <d6p1:BoolValue>false</d6p1:BoolValue>
                            <d6p1:ListValue>
                              <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d11p1:Key>String</d11p1:Key>
                                  <d11p1:Value>
                                    <d6p1:BoolValue>false</d6p1:BoolValue>
                                    <d6p1:ListValue>
                                      <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d11p1:Key>String</d11p1:Key>
                                          <d11p1:Value i:nil="true" />
                                        </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    </d6p1:ListValue>
                                    <d6p1:NumberValue>0</d6p1:NumberValue>
                                    <d6p1:StringValue>String</d6p1:StringValue>
                                    <d6p1:StructValue>
                                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:Key>String</d11p1:Key>
                                        <d11p1:Value i:nil="true" />
                                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d6p1:StructValue>
                                  </d11p1:Value>
                                </d11p1:KeyValueOfstringValue8Ahp2kgT>
                              </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d6p1:ListValue>
                            <d6p1:NumberValue>0</d6p1:NumberValue>
                            <d6p1:StringValue>String</d6p1:StringValue>
                            <d6p1:StructValue>
                              <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                <d11p1:Key>String</d11p1:Key>
                                <d11p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:Key>String</d11p1:Key>
                                        <d11p1:Value i:nil="true" />
                                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:Key>String</d11p1:Key>
                                      <d11p1:Value i:nil="true" />
                                    </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d11p1:Value>
                              </d11p1:KeyValueOfstringValue8Ahp2kgT>
                            </d6p1:StructValue>
                          </d11p1:Value>
                        </d11p1:KeyValueOfstringValue8Ahp2kgT>
                      </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    </d6p1:ListValue>
                    <d6p1:NumberValue>0</d6p1:NumberValue>
                    <d6p1:StringValue>String</d6p1:StringValue>
                    <d6p1:StructValue xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                        <d11p1:Key>String</d11p1:Key>
                        <d11p1:Value>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue>
                            <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                <d11p1:Key>String</d11p1:Key>
                                <d11p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:Key>String</d11p1:Key>
                                        <d11p1:Value i:nil="true" />
                                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:Key>String</d11p1:Key>
                                      <d11p1:Value i:nil="true" />
                                    </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d11p1:Value>
                              </d11p1:KeyValueOfstringValue8Ahp2kgT>
                            </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue>
                            <d11p1:KeyValueOfstringValue8Ahp2kgT>
                              <d11p1:Key>String</d11p1:Key>
                              <d11p1:Value>
                                <d6p1:BoolValue>false</d6p1:BoolValue>
                                <d6p1:ListValue>
                                  <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:Key>String</d11p1:Key>
                                      <d11p1:Value i:nil="true" />
                                    </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d6p1:ListValue>
                                <d6p1:NumberValue>0</d6p1:NumberValue>
                                <d6p1:StringValue>String</d6p1:StringValue>
                                <d6p1:StructValue>
                                  <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d11p1:Key>String</d11p1:Key>
                                    <d11p1:Value i:nil="true" />
                                  </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                </d6p1:StructValue>
                              </d11p1:Value>
                            </d11p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d11p1:Value>
                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                    </d6p1:StructValue>
                  </d6p1:DefaultValue>
                  <d6p1:Description>String</d6p1:Description>
                  <d6p1:DisableBinding>false</d6p1:DisableBinding>
                  <d6p1:Id>String</d6p1:Id>
                  <d6p1:IsAsync>false</d6p1:IsAsync>
                  <d6p1:IsOutput>false</d6p1:IsOutput>
                  <d6p1:ListType>
                    <d6p1:Fields>
                      <d6p1:DataField>
                        <d6p1:AnyValueType>false</d6p1:AnyValueType>
                        <d6p1:ConditionalVisibilityField>String</d6p1:ConditionalVisibilityField>
                        <d6p1:ConditionalVisibilityValue>String</d6p1:ConditionalVisibilityValue>
                        <d6p1:CustomFieldValuesUrl>String</d6p1:CustomFieldValuesUrl>
                        <d6p1:DefaultValue>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                <d14p1:Key>String</d14p1:Key>
                                <d14p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d14p1:Key>String</d14p1:Key>
                                        <d14p1:Value>
                                          <d6p1:BoolValue>false</d6p1:BoolValue>
                                          <d6p1:ListValue>
                                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                                <d14p1:Key>String</d14p1:Key>
                                                <d14p1:Value i:nil="true" />
                                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:ListValue>
                                          <d6p1:NumberValue>0</d6p1:NumberValue>
                                          <d6p1:StringValue>String</d6p1:StringValue>
                                          <d6p1:StructValue>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:StructValue>
                                        </d14p1:Value>
                                      </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d14p1:Value>
                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                              <d14p1:Key>String</d14p1:Key>
                              <d14p1:Value>
                                <d6p1:BoolValue>false</d6p1:BoolValue>
                                <d6p1:ListValue>
                                  <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d6p1:ListValue>
                                <d6p1:NumberValue>0</d6p1:NumberValue>
                                <d6p1:StringValue>String</d6p1:StringValue>
                                <d6p1:StructValue>
                                  <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:Key>String</d14p1:Key>
                                    <d14p1:Value>
                                      <d6p1:BoolValue>false</d6p1:BoolValue>
                                      <d6p1:ListValue>
                                        <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:ListValue>
                                      <d6p1:NumberValue>0</d6p1:NumberValue>
                                      <d6p1:StringValue>String</d6p1:StringValue>
                                      <d6p1:StructValue>
                                        <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:Key>String</d14p1:Key>
                                          <d14p1:Value i:nil="true" />
                                        </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:StructValue>
                                    </d14p1:Value>
                                  </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                </d6p1:StructValue>
                              </d14p1:Value>
                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d6p1:DefaultValue>
                        <d6p1:Description>String</d6p1:Description>
                        <d6p1:DisableBinding>false</d6p1:DisableBinding>
                        <d6p1:Id>String</d6p1:Id>
                        <d6p1:IsAsync>false</d6p1:IsAsync>
                        <d6p1:IsOutput>false</d6p1:IsOutput>
                        <d6p1:ListType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:ListType>
                        <d6p1:Name>String</d6p1:Name>
                        <d6p1:NoEvalTemplate>false</d6p1:NoEvalTemplate>
                        <d6p1:PossibleValues xmlns:d13p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                          <d13p1:string>String</d13p1:string>
                        </d6p1:PossibleValues>
                        <d6p1:StructType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:StructType>
                        <d6p1:TransitionNameFormat>String</d6p1:TransitionNameFormat>
                        <d6p1:Type>NotSpecified</d6p1:Type>
                        <d6p1:UIHint>None</d6p1:UIHint>
                        <d6p1:UITab>String</d6p1:UITab>
                        <d6p1:Uniqueness>NotUnique</d6p1:Uniqueness>
                        <d6p1:UserMode>Hidden</d6p1:UserMode>
                        <d6p1:VoiceOnly>false</d6p1:VoiceOnly>
                      </d6p1:DataField>
                    </d6p1:Fields>
                    <d6p1:TypeName>String</d6p1:TypeName>
                  </d6p1:ListType>
                  <d6p1:Name>String</d6p1:Name>
                  <d6p1:NoEvalTemplate>false</d6p1:NoEvalTemplate>
                  <d6p1:PossibleValues xmlns:d10p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                    <d10p1:string>String</d10p1:string>
                  </d6p1:PossibleValues>
                  <d6p1:StructType>
                    <d6p1:Fields>
                      <d6p1:DataField>
                        <d6p1:AnyValueType>false</d6p1:AnyValueType>
                        <d6p1:ConditionalVisibilityField>String</d6p1:ConditionalVisibilityField>
                        <d6p1:ConditionalVisibilityValue>String</d6p1:ConditionalVisibilityValue>
                        <d6p1:CustomFieldValuesUrl>String</d6p1:CustomFieldValuesUrl>
                        <d6p1:DefaultValue>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                <d14p1:Key>String</d14p1:Key>
                                <d14p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d14p1:Key>String</d14p1:Key>
                                        <d14p1:Value>
                                          <d6p1:BoolValue>false</d6p1:BoolValue>
                                          <d6p1:ListValue>
                                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                                <d14p1:Key>String</d14p1:Key>
                                                <d14p1:Value i:nil="true" />
                                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:ListValue>
                                          <d6p1:NumberValue>0</d6p1:NumberValue>
                                          <d6p1:StringValue>String</d6p1:StringValue>
                                          <d6p1:StructValue>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:StructValue>
                                        </d14p1:Value>
                                      </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d14p1:Value>
                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                              <d14p1:Key>String</d14p1:Key>
                              <d14p1:Value>
                                <d6p1:BoolValue>false</d6p1:BoolValue>
                                <d6p1:ListValue>
                                  <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d6p1:ListValue>
                                <d6p1:NumberValue>0</d6p1:NumberValue>
                                <d6p1:StringValue>String</d6p1:StringValue>
                                <d6p1:StructValue>
                                  <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:Key>String</d14p1:Key>
                                    <d14p1:Value>
                                      <d6p1:BoolValue>false</d6p1:BoolValue>
                                      <d6p1:ListValue>
                                        <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:ListValue>
                                      <d6p1:NumberValue>0</d6p1:NumberValue>
                                      <d6p1:StringValue>String</d6p1:StringValue>
                                      <d6p1:StructValue>
                                        <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:Key>String</d14p1:Key>
                                          <d14p1:Value i:nil="true" />
                                        </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:StructValue>
                                    </d14p1:Value>
                                  </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                </d6p1:StructValue>
                              </d14p1:Value>
                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d6p1:DefaultValue>
                        <d6p1:Description>String</d6p1:Description>
                        <d6p1:DisableBinding>false</d6p1:DisableBinding>
                        <d6p1:Id>String</d6p1:Id>
                        <d6p1:IsAsync>false</d6p1:IsAsync>
                        <d6p1:IsOutput>false</d6p1:IsOutput>
                        <d6p1:ListType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:ListType>
                        <d6p1:Name>String</d6p1:Name>
                        <d6p1:NoEvalTemplate>false</d6p1:NoEvalTemplate>
                        <d6p1:PossibleValues xmlns:d13p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                          <d13p1:string>String</d13p1:string>
                        </d6p1:PossibleValues>
                        <d6p1:StructType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:StructType>
                        <d6p1:TransitionNameFormat>String</d6p1:TransitionNameFormat>
                        <d6p1:Type>NotSpecified</d6p1:Type>
                        <d6p1:UIHint>None</d6p1:UIHint>
                        <d6p1:UITab>String</d6p1:UITab>
                        <d6p1:Uniqueness>NotUnique</d6p1:Uniqueness>
                        <d6p1:UserMode>Hidden</d6p1:UserMode>
                        <d6p1:VoiceOnly>false</d6p1:VoiceOnly>
                      </d6p1:DataField>
                    </d6p1:Fields>
                    <d6p1:TypeName>String</d6p1:TypeName>
                  </d6p1:StructType>
                  <d6p1:TransitionNameFormat>String</d6p1:TransitionNameFormat>
                  <d6p1:Type>NotSpecified</d6p1:Type>
                  <d6p1:UIHint>None</d6p1:UIHint>
                  <d6p1:UITab>String</d6p1:UITab>
                  <d6p1:Uniqueness>NotUnique</d6p1:Uniqueness>
                  <d6p1:UserMode>Hidden</d6p1:UserMode>
                  <d6p1:VoiceOnly>false</d6p1:VoiceOnly>
                </d6p1:DataField>
              </d6p1:Fields>
              <d6p1:TypeName>String</d6p1:TypeName>
            </d6p1:ListType>
            <d6p1:Name>String</d6p1:Name>
            <d6p1:NoEvalTemplate>false</d6p1:NoEvalTemplate>
            <d6p1:PossibleValues xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:string>String</d7p1:string>
            </d6p1:PossibleValues>
            <d6p1:StructType>
              <d6p1:Fields>
                <d6p1:DataField>
                  <d6p1:AnyValueType>false</d6p1:AnyValueType>
                  <d6p1:ConditionalVisibilityField>String</d6p1:ConditionalVisibilityField>
                  <d6p1:ConditionalVisibilityValue>String</d6p1:ConditionalVisibilityValue>
                  <d6p1:CustomFieldValuesUrl>String</d6p1:CustomFieldValuesUrl>
                  <d6p1:DefaultValue>
                    <d6p1:BoolValue>false</d6p1:BoolValue>
                    <d6p1:ListValue xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        <d11p1:KeyValueOfstringValue8Ahp2kgT>
                          <d11p1:Key>String</d11p1:Key>
                          <d11p1:Value>
                            <d6p1:BoolValue>false</d6p1:BoolValue>
                            <d6p1:ListValue>
                              <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d11p1:Key>String</d11p1:Key>
                                  <d11p1:Value>
                                    <d6p1:BoolValue>false</d6p1:BoolValue>
                                    <d6p1:ListValue>
                                      <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d11p1:Key>String</d11p1:Key>
                                          <d11p1:Value i:nil="true" />
                                        </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    </d6p1:ListValue>
                                    <d6p1:NumberValue>0</d6p1:NumberValue>
                                    <d6p1:StringValue>String</d6p1:StringValue>
                                    <d6p1:StructValue>
                                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:Key>String</d11p1:Key>
                                        <d11p1:Value i:nil="true" />
                                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d6p1:StructValue>
                                  </d11p1:Value>
                                </d11p1:KeyValueOfstringValue8Ahp2kgT>
                              </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d6p1:ListValue>
                            <d6p1:NumberValue>0</d6p1:NumberValue>
                            <d6p1:StringValue>String</d6p1:StringValue>
                            <d6p1:StructValue>
                              <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                <d11p1:Key>String</d11p1:Key>
                                <d11p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:Key>String</d11p1:Key>
                                        <d11p1:Value i:nil="true" />
                                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:Key>String</d11p1:Key>
                                      <d11p1:Value i:nil="true" />
                                    </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d11p1:Value>
                              </d11p1:KeyValueOfstringValue8Ahp2kgT>
                            </d6p1:StructValue>
                          </d11p1:Value>
                        </d11p1:KeyValueOfstringValue8Ahp2kgT>
                      </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    </d6p1:ListValue>
                    <d6p1:NumberValue>0</d6p1:NumberValue>
                    <d6p1:StringValue>String</d6p1:StringValue>
                    <d6p1:StructValue xmlns:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                        <d11p1:Key>String</d11p1:Key>
                        <d11p1:Value>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue>
                            <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                <d11p1:Key>String</d11p1:Key>
                                <d11p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d11p1:Key>String</d11p1:Key>
                                        <d11p1:Value i:nil="true" />
                                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:Key>String</d11p1:Key>
                                      <d11p1:Value i:nil="true" />
                                    </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d11p1:Value>
                              </d11p1:KeyValueOfstringValue8Ahp2kgT>
                            </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue>
                            <d11p1:KeyValueOfstringValue8Ahp2kgT>
                              <d11p1:Key>String</d11p1:Key>
                              <d11p1:Value>
                                <d6p1:BoolValue>false</d6p1:BoolValue>
                                <d6p1:ListValue>
                                  <d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d11p1:Key>String</d11p1:Key>
                                      <d11p1:Value i:nil="true" />
                                    </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d11p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d6p1:ListValue>
                                <d6p1:NumberValue>0</d6p1:NumberValue>
                                <d6p1:StringValue>String</d6p1:StringValue>
                                <d6p1:StructValue>
                                  <d11p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d11p1:Key>String</d11p1:Key>
                                    <d11p1:Value i:nil="true" />
                                  </d11p1:KeyValueOfstringValue8Ahp2kgT>
                                </d6p1:StructValue>
                              </d11p1:Value>
                            </d11p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d11p1:Value>
                      </d11p1:KeyValueOfstringValue8Ahp2kgT>
                    </d6p1:StructValue>
                  </d6p1:DefaultValue>
                  <d6p1:Description>String</d6p1:Description>
                  <d6p1:DisableBinding>false</d6p1:DisableBinding>
                  <d6p1:Id>String</d6p1:Id>
                  <d6p1:IsAsync>false</d6p1:IsAsync>
                  <d6p1:IsOutput>false</d6p1:IsOutput>
                  <d6p1:ListType>
                    <d6p1:Fields>
                      <d6p1:DataField>
                        <d6p1:AnyValueType>false</d6p1:AnyValueType>
                        <d6p1:ConditionalVisibilityField>String</d6p1:ConditionalVisibilityField>
                        <d6p1:ConditionalVisibilityValue>String</d6p1:ConditionalVisibilityValue>
                        <d6p1:CustomFieldValuesUrl>String</d6p1:CustomFieldValuesUrl>
                        <d6p1:DefaultValue>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                <d14p1:Key>String</d14p1:Key>
                                <d14p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d14p1:Key>String</d14p1:Key>
                                        <d14p1:Value>
                                          <d6p1:BoolValue>false</d6p1:BoolValue>
                                          <d6p1:ListValue>
                                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                                <d14p1:Key>String</d14p1:Key>
                                                <d14p1:Value i:nil="true" />
                                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:ListValue>
                                          <d6p1:NumberValue>0</d6p1:NumberValue>
                                          <d6p1:StringValue>String</d6p1:StringValue>
                                          <d6p1:StructValue>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:StructValue>
                                        </d14p1:Value>
                                      </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d14p1:Value>
                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                              <d14p1:Key>String</d14p1:Key>
                              <d14p1:Value>
                                <d6p1:BoolValue>false</d6p1:BoolValue>
                                <d6p1:ListValue>
                                  <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d6p1:ListValue>
                                <d6p1:NumberValue>0</d6p1:NumberValue>
                                <d6p1:StringValue>String</d6p1:StringValue>
                                <d6p1:StructValue>
                                  <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:Key>String</d14p1:Key>
                                    <d14p1:Value>
                                      <d6p1:BoolValue>false</d6p1:BoolValue>
                                      <d6p1:ListValue>
                                        <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:ListValue>
                                      <d6p1:NumberValue>0</d6p1:NumberValue>
                                      <d6p1:StringValue>String</d6p1:StringValue>
                                      <d6p1:StructValue>
                                        <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:Key>String</d14p1:Key>
                                          <d14p1:Value i:nil="true" />
                                        </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:StructValue>
                                    </d14p1:Value>
                                  </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                </d6p1:StructValue>
                              </d14p1:Value>
                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d6p1:DefaultValue>
                        <d6p1:Description>String</d6p1:Description>
                        <d6p1:DisableBinding>false</d6p1:DisableBinding>
                        <d6p1:Id>String</d6p1:Id>
                        <d6p1:IsAsync>false</d6p1:IsAsync>
                        <d6p1:IsOutput>false</d6p1:IsOutput>
                        <d6p1:ListType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:ListType>
                        <d6p1:Name>String</d6p1:Name>
                        <d6p1:NoEvalTemplate>false</d6p1:NoEvalTemplate>
                        <d6p1:PossibleValues xmlns:d13p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                          <d13p1:string>String</d13p1:string>
                        </d6p1:PossibleValues>
                        <d6p1:StructType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:StructType>
                        <d6p1:TransitionNameFormat>String</d6p1:TransitionNameFormat>
                        <d6p1:Type>NotSpecified</d6p1:Type>
                        <d6p1:UIHint>None</d6p1:UIHint>
                        <d6p1:UITab>String</d6p1:UITab>
                        <d6p1:Uniqueness>NotUnique</d6p1:Uniqueness>
                        <d6p1:UserMode>Hidden</d6p1:UserMode>
                        <d6p1:VoiceOnly>false</d6p1:VoiceOnly>
                      </d6p1:DataField>
                    </d6p1:Fields>
                    <d6p1:TypeName>String</d6p1:TypeName>
                  </d6p1:ListType>
                  <d6p1:Name>String</d6p1:Name>
                  <d6p1:NoEvalTemplate>false</d6p1:NoEvalTemplate>
                  <d6p1:PossibleValues xmlns:d10p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                    <d10p1:string>String</d10p1:string>
                  </d6p1:PossibleValues>
                  <d6p1:StructType>
                    <d6p1:Fields>
                      <d6p1:DataField>
                        <d6p1:AnyValueType>false</d6p1:AnyValueType>
                        <d6p1:ConditionalVisibilityField>String</d6p1:ConditionalVisibilityField>
                        <d6p1:ConditionalVisibilityValue>String</d6p1:ConditionalVisibilityValue>
                        <d6p1:CustomFieldValuesUrl>String</d6p1:CustomFieldValuesUrl>
                        <d6p1:DefaultValue>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                <d14p1:Key>String</d14p1:Key>
                                <d14p1:Value>
                                  <d6p1:BoolValue>false</d6p1:BoolValue>
                                  <d6p1:ListValue>
                                    <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        <d14p1:Key>String</d14p1:Key>
                                        <d14p1:Value>
                                          <d6p1:BoolValue>false</d6p1:BoolValue>
                                          <d6p1:ListValue>
                                            <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                                <d14p1:Key>String</d14p1:Key>
                                                <d14p1:Value i:nil="true" />
                                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:ListValue>
                                          <d6p1:NumberValue>0</d6p1:NumberValue>
                                          <d6p1:StringValue>String</d6p1:StringValue>
                                          <d6p1:StructValue>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d6p1:StructValue>
                                        </d14p1:Value>
                                      </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:ListValue>
                                  <d6p1:NumberValue>0</d6p1:NumberValue>
                                  <d6p1:StringValue>String</d6p1:StringValue>
                                  <d6p1:StructValue>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d6p1:StructValue>
                                </d14p1:Value>
                              </d14p1:KeyValueOfstringValue8Ahp2kgT>
                            </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue xmlns:d14p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                              <d14p1:Key>String</d14p1:Key>
                              <d14p1:Value>
                                <d6p1:BoolValue>false</d6p1:BoolValue>
                                <d6p1:ListValue>
                                  <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d14p1:Key>String</d14p1:Key>
                                      <d14p1:Value>
                                        <d6p1:BoolValue>false</d6p1:BoolValue>
                                        <d6p1:ListValue>
                                          <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                              <d14p1:Key>String</d14p1:Key>
                                              <d14p1:Value i:nil="true" />
                                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:ListValue>
                                        <d6p1:NumberValue>0</d6p1:NumberValue>
                                        <d6p1:StringValue>String</d6p1:StringValue>
                                        <d6p1:StructValue>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d6p1:StructValue>
                                      </d14p1:Value>
                                    </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d6p1:ListValue>
                                <d6p1:NumberValue>0</d6p1:NumberValue>
                                <d6p1:StringValue>String</d6p1:StringValue>
                                <d6p1:StructValue>
                                  <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d14p1:Key>String</d14p1:Key>
                                    <d14p1:Value>
                                      <d6p1:BoolValue>false</d6p1:BoolValue>
                                      <d6p1:ListValue>
                                        <d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                            <d14p1:Key>String</d14p1:Key>
                                            <d14p1:Value i:nil="true" />
                                          </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                        </d14p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:ListValue>
                                      <d6p1:NumberValue>0</d6p1:NumberValue>
                                      <d6p1:StringValue>String</d6p1:StringValue>
                                      <d6p1:StructValue>
                                        <d14p1:KeyValueOfstringValue8Ahp2kgT>
                                          <d14p1:Key>String</d14p1:Key>
                                          <d14p1:Value i:nil="true" />
                                        </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                      </d6p1:StructValue>
                                    </d14p1:Value>
                                  </d14p1:KeyValueOfstringValue8Ahp2kgT>
                                </d6p1:StructValue>
                              </d14p1:Value>
                            </d14p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d6p1:DefaultValue>
                        <d6p1:Description>String</d6p1:Description>
                        <d6p1:DisableBinding>false</d6p1:DisableBinding>
                        <d6p1:Id>String</d6p1:Id>
                        <d6p1:IsAsync>false</d6p1:IsAsync>
                        <d6p1:IsOutput>false</d6p1:IsOutput>
                        <d6p1:ListType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:ListType>
                        <d6p1:Name>String</d6p1:Name>
                        <d6p1:NoEvalTemplate>false</d6p1:NoEvalTemplate>
                        <d6p1:PossibleValues xmlns:d13p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                          <d13p1:string>String</d13p1:string>
                        </d6p1:PossibleValues>
                        <d6p1:StructType>
                          <d6p1:Fields>
                            <d6p1:DataField i:nil="true" />
                          </d6p1:Fields>
                          <d6p1:TypeName>String</d6p1:TypeName>
                        </d6p1:StructType>
                        <d6p1:TransitionNameFormat>String</d6p1:TransitionNameFormat>
                        <d6p1:Type>NotSpecified</d6p1:Type>
                        <d6p1:UIHint>None</d6p1:UIHint>
                        <d6p1:UITab>String</d6p1:UITab>
                        <d6p1:Uniqueness>NotUnique</d6p1:Uniqueness>
                        <d6p1:UserMode>Hidden</d6p1:UserMode>
                        <d6p1:VoiceOnly>false</d6p1:VoiceOnly>
                      </d6p1:DataField>
                    </d6p1:Fields>
                    <d6p1:TypeName>String</d6p1:TypeName>
                  </d6p1:StructType>
                  <d6p1:TransitionNameFormat>String</d6p1:TransitionNameFormat>
                  <d6p1:Type>NotSpecified</d6p1:Type>
                  <d6p1:UIHint>None</d6p1:UIHint>
                  <d6p1:UITab>String</d6p1:UITab>
                  <d6p1:Uniqueness>NotUnique</d6p1:Uniqueness>
                  <d6p1:UserMode>Hidden</d6p1:UserMode>
                  <d6p1:VoiceOnly>false</d6p1:VoiceOnly>
                </d6p1:DataField>
              </d6p1:Fields>
              <d6p1:TypeName>String</d6p1:TypeName>
            </d6p1:StructType>
            <d6p1:TransitionNameFormat>String</d6p1:TransitionNameFormat>
            <d6p1:Type>NotSpecified</d6p1:Type>
            <d6p1:UIHint>None</d6p1:UIHint>
            <d6p1:UITab>String</d6p1:UITab>
            <d6p1:Uniqueness>NotUnique</d6p1:Uniqueness>
            <d6p1:UserMode>Hidden</d6p1:UserMode>
            <d6p1:VoiceOnly>false</d6p1:VoiceOnly>
          </DataField>
          <DisplayName>String</DisplayName>
          <Name>String</Name>
          <PossibleValues>
            <SettingsPossibleValue>
              <DisplayName>String</DisplayName>
              <Value xmlns:d8p1="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">
                <d8p1:BoolValue>false</d8p1:BoolValue>
                <d8p1:ListValue xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    <d9p1:KeyValueOfstringValue8Ahp2kgT>
                      <d9p1:Key>String</d9p1:Key>
                      <d9p1:Value>
                        <d8p1:BoolValue>false</d8p1:BoolValue>
                        <d8p1:ListValue>
                          <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            <d9p1:KeyValueOfstringValue8Ahp2kgT>
                              <d9p1:Key>String</d9p1:Key>
                              <d9p1:Value>
                                <d8p1:BoolValue>false</d8p1:BoolValue>
                                <d8p1:ListValue>
                                  <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                      <d9p1:Key>String</d9p1:Key>
                                      <d9p1:Value i:nil="true" />
                                    </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                </d8p1:ListValue>
                                <d8p1:NumberValue>0</d8p1:NumberValue>
                                <d8p1:StringValue>String</d8p1:StringValue>
                                <d8p1:StructValue>
                                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:Key>String</d9p1:Key>
                                    <d9p1:Value i:nil="true" />
                                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                </d8p1:StructValue>
                              </d9p1:Value>
                            </d9p1:KeyValueOfstringValue8Ahp2kgT>
                          </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        </d8p1:ListValue>
                        <d8p1:NumberValue>0</d8p1:NumberValue>
                        <d8p1:StringValue>String</d8p1:StringValue>
                        <d8p1:StructValue>
                          <d9p1:KeyValueOfstringValue8Ahp2kgT>
                            <d9p1:Key>String</d9p1:Key>
                            <d9p1:Value>
                              <d8p1:BoolValue>false</d8p1:BoolValue>
                              <d8p1:ListValue>
                                <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:Key>String</d9p1:Key>
                                    <d9p1:Value i:nil="true" />
                                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              </d8p1:ListValue>
                              <d8p1:NumberValue>0</d8p1:NumberValue>
                              <d8p1:StringValue>String</d8p1:StringValue>
                              <d8p1:StructValue>
                                <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:Key>String</d9p1:Key>
                                  <d9p1:Value i:nil="true" />
                                </d9p1:KeyValueOfstringValue8Ahp2kgT>
                              </d8p1:StructValue>
                            </d9p1:Value>
                          </d9p1:KeyValueOfstringValue8Ahp2kgT>
                        </d8p1:StructValue>
                      </d9p1:Value>
                    </d9p1:KeyValueOfstringValue8Ahp2kgT>
                  </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                </d8p1:ListValue>
                <d8p1:NumberValue>0</d8p1:NumberValue>
                <d8p1:StringValue>String</d8p1:StringValue>
                <d8p1:StructValue xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                    <d9p1:Key>String</d9p1:Key>
                    <d9p1:Value>
                      <d8p1:BoolValue>false</d8p1:BoolValue>
                      <d8p1:ListValue>
                        <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          <d9p1:KeyValueOfstringValue8Ahp2kgT>
                            <d9p1:Key>String</d9p1:Key>
                            <d9p1:Value>
                              <d8p1:BoolValue>false</d8p1:BoolValue>
                              <d8p1:ListValue>
                                <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                    <d9p1:Key>String</d9p1:Key>
                                    <d9p1:Value i:nil="true" />
                                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                                </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              </d8p1:ListValue>
                              <d8p1:NumberValue>0</d8p1:NumberValue>
                              <d8p1:StringValue>String</d8p1:StringValue>
                              <d8p1:StructValue>
                                <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:Key>String</d9p1:Key>
                                  <d9p1:Value i:nil="true" />
                                </d9p1:KeyValueOfstringValue8Ahp2kgT>
                              </d8p1:StructValue>
                            </d9p1:Value>
                          </d9p1:KeyValueOfstringValue8Ahp2kgT>
                        </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      </d8p1:ListValue>
                      <d8p1:NumberValue>0</d8p1:NumberValue>
                      <d8p1:StringValue>String</d8p1:StringValue>
                      <d8p1:StructValue>
                        <d9p1:KeyValueOfstringValue8Ahp2kgT>
                          <d9p1:Key>String</d9p1:Key>
                          <d9p1:Value>
                            <d8p1:BoolValue>false</d8p1:BoolValue>
                            <d8p1:ListValue>
                              <d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d9p1:Key>String</d9p1:Key>
                                  <d9p1:Value i:nil="true" />
                                </d9p1:KeyValueOfstringValue8Ahp2kgT>
                              </d9p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d8p1:ListValue>
                            <d8p1:NumberValue>0</d8p1:NumberValue>
                            <d8p1:StringValue>String</d8p1:StringValue>
                            <d8p1:StructValue>
                              <d9p1:KeyValueOfstringValue8Ahp2kgT>
                                <d9p1:Key>String</d9p1:Key>
                                <d9p1:Value i:nil="true" />
                              </d9p1:KeyValueOfstringValue8Ahp2kgT>
                            </d8p1:StructValue>
                          </d9p1:Value>
                        </d9p1:KeyValueOfstringValue8Ahp2kgT>
                      </d8p1:StructValue>
                    </d9p1:Value>
                  </d9p1:KeyValueOfstringValue8Ahp2kgT>
                </d8p1:StructValue>
              </Value>
            </SettingsPossibleValue>
          </PossibleValues>
          <ReadOnly>false</ReadOnly>
          <Type>NotSpecified</Type>
          <Value xmlns:d6p1="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data">
            <d6p1:BoolValue>false</d6p1:BoolValue>
            <d6p1:ListValue xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                <d7p1:KeyValueOfstringValue8Ahp2kgT>
                  <d7p1:Key>String</d7p1:Key>
                  <d7p1:Value>
                    <d6p1:BoolValue>false</d6p1:BoolValue>
                    <d6p1:ListValue>
                      <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        <d7p1:KeyValueOfstringValue8Ahp2kgT>
                          <d7p1:Key>String</d7p1:Key>
                          <d7p1:Value>
                            <d6p1:BoolValue>false</d6p1:BoolValue>
                            <d6p1:ListValue>
                              <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                                <d7p1:KeyValueOfstringValue8Ahp2kgT>
                                  <d7p1:Key>String</d7p1:Key>
                                  <d7p1:Value i:nil="true" />
                                </d7p1:KeyValueOfstringValue8Ahp2kgT>
                              </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            </d6p1:ListValue>
                            <d6p1:NumberValue>0</d6p1:NumberValue>
                            <d6p1:StringValue>String</d6p1:StringValue>
                            <d6p1:StructValue>
                              <d7p1:KeyValueOfstringValue8Ahp2kgT>
                                <d7p1:Key>String</d7p1:Key>
                                <d7p1:Value i:nil="true" />
                              </d7p1:KeyValueOfstringValue8Ahp2kgT>
                            </d6p1:StructValue>
                          </d7p1:Value>
                        </d7p1:KeyValueOfstringValue8Ahp2kgT>
                      </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                    </d6p1:ListValue>
                    <d6p1:NumberValue>0</d6p1:NumberValue>
                    <d6p1:StringValue>String</d6p1:StringValue>
                    <d6p1:StructValue>
                      <d7p1:KeyValueOfstringValue8Ahp2kgT>
                        <d7p1:Key>String</d7p1:Key>
                        <d7p1:Value>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue>
                            <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d7p1:KeyValueOfstringValue8Ahp2kgT>
                                <d7p1:Key>String</d7p1:Key>
                                <d7p1:Value i:nil="true" />
                              </d7p1:KeyValueOfstringValue8Ahp2kgT>
                            </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue>
                            <d7p1:KeyValueOfstringValue8Ahp2kgT>
                              <d7p1:Key>String</d7p1:Key>
                              <d7p1:Value i:nil="true" />
                            </d7p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d7p1:Value>
                      </d7p1:KeyValueOfstringValue8Ahp2kgT>
                    </d6p1:StructValue>
                  </d7p1:Value>
                </d7p1:KeyValueOfstringValue8Ahp2kgT>
              </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
            </d6p1:ListValue>
            <d6p1:NumberValue>0</d6p1:NumberValue>
            <d6p1:StringValue>String</d6p1:StringValue>
            <d6p1:StructValue xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:KeyValueOfstringValue8Ahp2kgT>
                <d7p1:Key>String</d7p1:Key>
                <d7p1:Value>
                  <d6p1:BoolValue>false</d6p1:BoolValue>
                  <d6p1:ListValue>
                    <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                      <d7p1:KeyValueOfstringValue8Ahp2kgT>
                        <d7p1:Key>String</d7p1:Key>
                        <d7p1:Value>
                          <d6p1:BoolValue>false</d6p1:BoolValue>
                          <d6p1:ListValue>
                            <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                              <d7p1:KeyValueOfstringValue8Ahp2kgT>
                                <d7p1:Key>String</d7p1:Key>
                                <d7p1:Value i:nil="true" />
                              </d7p1:KeyValueOfstringValue8Ahp2kgT>
                            </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                          </d6p1:ListValue>
                          <d6p1:NumberValue>0</d6p1:NumberValue>
                          <d6p1:StringValue>String</d6p1:StringValue>
                          <d6p1:StructValue>
                            <d7p1:KeyValueOfstringValue8Ahp2kgT>
                              <d7p1:Key>String</d7p1:Key>
                              <d7p1:Value i:nil="true" />
                            </d7p1:KeyValueOfstringValue8Ahp2kgT>
                          </d6p1:StructValue>
                        </d7p1:Value>
                      </d7p1:KeyValueOfstringValue8Ahp2kgT>
                    </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                  </d6p1:ListValue>
                  <d6p1:NumberValue>0</d6p1:NumberValue>
                  <d6p1:StringValue>String</d6p1:StringValue>
                  <d6p1:StructValue>
                    <d7p1:KeyValueOfstringValue8Ahp2kgT>
                      <d7p1:Key>String</d7p1:Key>
                      <d7p1:Value>
                        <d6p1:BoolValue>false</d6p1:BoolValue>
                        <d6p1:ListValue>
                          <d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                            <d7p1:KeyValueOfstringValue8Ahp2kgT>
                              <d7p1:Key>String</d7p1:Key>
                              <d7p1:Value i:nil="true" />
                            </d7p1:KeyValueOfstringValue8Ahp2kgT>
                          </d7p1:ArrayOfKeyValueOfstringValue8Ahp2kgT>
                        </d6p1:ListValue>
                        <d6p1:NumberValue>0</d6p1:NumberValue>
                        <d6p1:StringValue>String</d6p1:StringValue>
                        <d6p1:StructValue>
                          <d7p1:KeyValueOfstringValue8Ahp2kgT>
                            <d7p1:Key>String</d7p1:Key>
                            <d7p1:Value i:nil="true" />
                          </d7p1:KeyValueOfstringValue8Ahp2kgT>
                        </d6p1:StructValue>
                      </d7p1:Value>
                    </d7p1:KeyValueOfstringValue8Ahp2kgT>
                  </d6p1:StructValue>
                </d7p1:Value>
              </d7p1:KeyValueOfstringValue8Ahp2kgT>
            </d6p1:StructValue>
          </Value>
        </SettingsField>
      </Fields>
      <Id>String</Id>
      <Name>String</Name>
      <ReadOnly>false</ReadOnly>
      <Type>Endpoint</Type>
    </SettingsObject>
  </SettingsObjects>
</ListSettingsObjectsResponse>