* @copyright 2015 Klarna AB * @license http://www.apache.org/licenses/LICENSE-2.0 Apache license v2.0 * @link http://developers.klarna.com/ */ /** * Interface for fetchable resource objects * * @category Payment * @package Klarna_Checkout * @author Matthias Feist * @copyright 2015 Klarna AB * @license http://www.apache.org/licenses/LICENSE-2.0 Apache license v2.0 * @link http://developers.klarna.com/ */ interface Klarna_Checkout_ResourceFetchableInterface { /** * Fetch resource data * * @return void */ public function fetch(); }