* @license MIT * @link http://retailcrm.ru * @see http://retailcrm.ru/docs */ namespace Intaro\RetailCrm\Model\Api\Response\SmsVerification; use Intaro\RetailCrm\Component\Json\Mapping; /** * Class SmsVerificationStatusResponse * * @package Intaro\RetailCrm\Model\Api\Response\SmsVerification */ class SmsVerificationStatusResponse extends SmsVerificationConfirmResponse { /** * Результат запроса (успешный/неуспешный) * * @var boolean $success * * @Mapping\Type("boolean") * @Mapping\SerializedName("success") */ public $success; /** * @var \Intaro\RetailCrm\Model\Api\SmsVerification * * @Mapping\Type("\Intaro\RetailCrm\Model\Api\SmsVerification") * @Mapping\SerializedName("verification") */ public $verification; }