for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sichikawa\SendgridApiBuilder\Api\Personalize;
class Bcc
{
/**
* @var string
*/
public $email;
public $name;
* Bcc constructor.
* @param $email
* @param null $name
public function __construct($email, $name = null)
$this->email = $email;
$this->name = $name;
}