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