commerce_amws-8.x-1.x-dev/src/Api/ListClientInterface.php
src/Api/ListClientInterface.php
<?php
namespace Drupal\commerce_amws\Api;
use KrystalCode\ApiIterator\ClientInterface as IteratorClientInterface;
/**
* Defines the interface for list clients.
*
* List clients are API clients that are responsible for getting lists of items
* from Amazon MWS.
*/
interface ListClientInterface extends IteratorClientInterface {
/**
* The default number of items to get per request.
*/
const DEFAULT_LIMIT = 100;
}
