| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- /**
- * This file is part of the Klarna Core module
- *
- * (c) Klarna Bank AB (publ)
- *
- * For the full copyright and license information, please view the NOTICE
- * and LICENSE files that were distributed with this source code.
- */
- namespace Klarna\Core\Api;
- /**
- * Interface ServiceInterface
- *
- * @package Klarna\Core\Api
- */
- interface ServiceInterface
- {
- /**
- * post
- */
- const POST = 'post';
- /**
- * get
- */
- const GET = 'get';
- /**
- * put
- */
- const PUT = 'put';
- /**
- * patch
- */
- const PATCH = 'patch';
- /**
- * delete
- */
- const DELETE = 'delete';
- /**
- * Make API call
- *
- * @param string $url
- * @param string $body
- * @param string $method HTTP request type
- * @param string $klarnaId
- * @return array Response body from API call
- */
- public function makeRequest($url, $body = '', $method = self::POST, $klarnaId = null);
- /**
- * Connect to API
- *
- * @param string $username
- * @param string $password
- * @param string $connectUrl
- * @return bool Whether connect succeeded or not
- */
- public function connect($username, $password, $connectUrl = null);
- /**
- * @param string $product
- * @param string $version
- * @param string $mageInfo
- * @return mixed
- */
- public function setUserAgent($product, $version, $mageInfo);
- /**
- * @param string $header
- * @param string|null $value
- * @return mixed
- */
- public function setHeader($header, $value = null);
- }
|