1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66:
<?php
/**
* Copyright (C) Marcelle Hövelmanns, art solution - All Rights Reserved
*
* @file ClientInterface.php
* @author Marcelle Hövelmanns
* @site http://www.artsolution.de
* @date 24.10.17
*/
namespace AffiliconApiClient\Interfaces;
/**
* Interface ClientInterface
* @package Affilicon
*/
interface ClientInterface
{
/**
* Initializes the Client
* @return $this
*/
public function init();
/**
* Sets the Client ID, previously called Vendor ID
* @param string $id
* @return $this
*/
public function setClientId($id);
/**
* Gets the Client ID, previously called Vendor ID
* @return string
*/
public function getClientId();
/**
* Gets the specified country code
* @return string
*/
public function getCountryId();
/**
* Sets the country code, eg. "en-US"
* @param $countryId
* @return $this
*/
public function setCountryId($countryId);
/**
* Gets the specified user language
* @return $this
*/
public function getUserLanguage();
/**
* Sets the user language, eg. "en"
* @param string $userLanguage
* @return $this
*/
public function setUserLanguage($userLanguage);
}