Example Code of the Connector Configuration File
The following code is an example of the connector_configuration.xml file:
<root>
<types>
<type id="Opportunity">
<view label="Opportunity" label_plural="Opportunities"
small_icon="type_image:Opportunity:16" normal_icon="type_image:Opportunity:24"
large_icon="type_image:Opportunity:48"></view>
<synchronizer name_format=":[:(Name):]">
<links>
<link>Account Id</link>
<link>Currency Code</link>
</links>
<natural_keys>
<natural_key>
<field>Name</field>
</natural_key>
</natural_keys>
</synchronizer>
</type>
</types>
<filter_presets>
<preset name="Test filters">
<type id="Action">
<group link="and">
<binary field="Planned" condition="ge">
<value type="function">today</value>
</binary>
</group>
</type>
</preset>
</filter_presets>
</root>