setCategory($category); } } /** * Add a category to a Category object * * @param string $category A category name for an email message. * Each category name may not exceed 255 * characters * * @throws \SendGrid\Mail\TypeException */ public function setCategory($category) { Assert::maxLength($category, 'category', 255); $this->category = $category; } /** * Retrieve a category from a Category object * * @return string */ public function getCategory() { return $this->category; } /** * Return an array representing a Category object for the Twilio SendGrid API * * @return string */ public function jsonSerialize() { return $this->getCategory(); } }