public function __construct($headers, $body, $header)
 {
     $this->header = $header;
     parent::__construct($headers, $body);
 }
 public function __construct($headers, $body, $expected_hmac, $received_hmac)
 {
     $this->expected_hmac = $expected_hmac;
     $this->received_hmac = $received_hmac;
     parent::__construct($headers, $body);
 }