commerce_amws-8.x-1.x-dev/src/MachineName/Field/Order.php
src/MachineName/Field/Order.php
<?php
namespace Drupal\commerce_amws\MachineName\Field;
/**
* Holds machine names of Order entity fields.
*
* @link https://github.com/krystalcode/drupal8-coding-standards/blob/master/Fields.md#field-name-constants
*/
class Order {
/**
* Holds the Amazon MWS order ID.
*/
const REMOTE_ID = 'amws_remote_id';
/**
* Holds the time the Amazon MWS order was changed.
*/
const REMOTE_CHANGED = 'amws_remote_changed';
/**
* Holds the ID of the local Amazon MWS store that the order belong to.
*/
const AMWS_STORE = 'amws_store';
}
