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