/home/techb158/immovalet.com/vendor/sendgrid/sendgrid/lib/mail
Edit: /home/techb158/immovalet.com/vendor/sendgrid/sendgrid/lib/mail/GroupId.php (1448B)
setGroupId($group_id);
}
}
/**
* Add the group id to a GroupId object
*
* @param int $group_id The unsubscribe group to associate with this email
*
* @throws \SendGrid\Mail\TypeException
*/
public function setGroupId($group_id)
{
Assert::integer($group_id, 'group_id');
$this->group_id = $group_id;
}
/**
* Retrieve the group id from a GroupId object
*
* @return int
*/
public function getGroupId()
{
return $this->group_id;
}
/**
* Return an array representing a GroupId object for the Twilio SendGrid API
*
* @return int
*/
public function jsonSerialize()
{
return $this->getGroupId();
}
}