/**
  * Resets/initializes the interpreted response to a fresh instance
  * with default values
  */
 protected function resetInterpretedResponse()
 {
     $this->interpretedResponse = app(ServiceResponse::class);
     $this->interpretedResponse->setStatusCode(0);
     $this->interpretedResponse->setErrors([]);
     $this->interpretedResponse->setData(null);
 }