Mailjet\Response::getCount PHP Method

getCount() public method

Count getter return the resulting array size
public getCount ( ) : null | integer
return null | integer
    public function getCount()
    {
        if (isset($this->body['Count'])) {
            return $this->body['Count'];
        }
        return null;
    }