| 12345678910111213141516171819202122232425262728293031323334 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- /**
- * This file is part of the Klarna KP module
- *
- * (c) Klarna Bank AB (publ)
- *
- * For the full copyright and license information, please view the NOTICE
- * and LICENSE files that were distributed with this source code.
- */
- -->
- <entities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/dataProfileSchema.xsd">
- <entity name="KpCustomerRegionOne" type="region">
- <data key="region_code">100</data>
- <data key="region_id">12</data>
- </entity>
- <entity name="KpRegionTX" type="region">
- <data key="region">Texas</data>
- <data key="region_code">TX</data>
- <data key="region_id">1</data>
- </entity>
- <entity name="KpRegionCA" type="region">
- <data key="region">California</data>
- <data key="region_code">CA</data>
- <data key="region_id">12</data>
- </entity>
- <entity name="KpRegionNY" type="region">
- <data key="region">New York</data>
- <data key="region_code">NY</data>
- <data key="region_id">43</data>
- </entity>
- </entities>
|