Mailjet\Response::getData PHP Method

getData() public method

Data Getter The data returned by the mailjet call
public getData ( ) : array
return array data
    public function getData()
    {
        if (isset($this->body['Data'])) {
            return $this->body['Data'];
        }
        return $this->body;
    }