File "Config.php"

Full Path: /home/cananyalcin/public_html/core/lib/shoplemo/php-sdk/source/Config.php
File size: 666 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Shoplemo;

class Config
{
	private $apiKey;
	private $secretKey;
	private $serviceBaseUrl;
	private $sdkVersion = "1.0.0";

	public function getSDKVersion()
	{
		return $this->sdkVersion;
	}

	public function getAPIKey()
	{
		return $this->apiKey;
	}

	public function setAPIKey($apiKey)
	{
		$this->apiKey = $apiKey;
	}

	public function getSecretKey()
	{
		return $this->secretKey;
	}

	public function setSecretKey($secretKey)
	{
		$this->secretKey = $secretKey;
	}

	public function getServiceBaseUrl()
	{
		return $this->serviceBaseUrl;
	}

	public function setServiceBaseUrl($serviceBaseUrl)
	{
		$this->serviceBaseUrl = $serviceBaseUrl;
	}
}