for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MaxBeckers\AmazonAlexa\Response\CanFulfill;
use MaxBeckers\AmazonAlexa\Response\ResponseBodyInterface;
/**
* @author Maximilian Beckers <[email protected]>
*/
class CanFulfillResponseBody implements ResponseBodyInterface
{
* @var CanFulfillIntentResponse|null
public $canFulfillIntent;
* @param CanFulfillIntentResponse $canFulfillIntent
*
* @return CanFulfillResponseBody
public static function create(CanFulfillIntentResponse $canFulfillIntent): self
$canFulfillResponseBody = new self();
$canFulfillResponseBody->canFulfillIntent = $canFulfillIntent;
return $canFulfillResponseBody;
}