UPSRequestInterface.php in Commerce UPS 8.3
Namespace
Drupal\commerce_upsFile
src/UPSRequestInterface.phpView source
<?php
namespace Drupal\commerce_ups;
/**
* Interface for the UPS API Service.
*
* @package Drupal\commerce_ups
*/
interface UPSRequestInterface {
/**
* Set the request configuration.
*
* @param array $configuration
* A configuration array from a CommerceShippingMethod.
*/
public function setConfig(array $configuration);
}
Interfaces
Name | Description |
---|---|
UPSRequestInterface | Interface for the UPS API Service. |