/**
  * VoucherifyClient constructor.
  *
  * @param string $apiID
  * @param string $apiKey
  */
 public function __construct($apiID, $apiKey)
 {
     parent::__construct($apiID, $apiKey);
     $this->customer = new Customer($apiID, $apiKey);
 }
 /**
  * Customer constructor.
  *
  * @param string $apiID
  * @param string $apiKey
  */
 public function __construct($apiID, $apiKey)
 {
     parent::__construct($apiID, $apiKey);
 }