Mailjet\Client::__construct PHP Méthode

__construct() public méthode

Client constructor requires:
public __construct ( string $key, string $secret, boolean $call = true )
$key string Mailjet API Key
$secret string Mailjet API Secret
$call boolean performs the call or not
    public function __construct($key, $secret, $call = true)
    {
        $this->call = $call;
        $this->apikey = $key;
        $this->apisecret = $secret;
    }