for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Rezahmady\Smsir\Responses;
class VerificationCodeResponse extends BaseResponse
{
/**
* @var string
*/
public $verificationCodeId;
public function __construct(bool $isSuccessful, string $message, string $verificationCodeId)
$this->isSuccessful = $isSuccessful;
$this->message = $message;
$this->verificationCodeId = $verificationCodeId;
}