<?xml version="1.0"?>
<!--
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Api/etc/extension_attributes.xsd">
    <extension_attributes for="Magento\Sales\Api\Data\OrderInterface">
        <attribute code="pickup_location_code" type="string">
            <join reference_table="inventory_pickup_location_order" join_on_field="entity_id" reference_field="order_id">
                <field column="pickup_location_code">pickup_location_code</field>
            </join>
        </attribute>
        <attribute code="notification_sent" type="int">
            <join reference_table="inventory_order_notification" join_on_field="entity_id" reference_field="order_id">
                <field>notification_sent</field>
            </join>
        </attribute>
        <attribute code="send_notification" type="int">
            <join reference_table="inventory_order_notification" join_on_field="entity_id" reference_field="order_id">
                <field>send_notification</field>
            </join>
        </attribute>
    </extension_attributes>
</config>
