* @license MIT * @link http://retailcrm.ru * @see http://retailcrm.ru/docs */ namespace Intaro\RetailCrm\Model\Api\Response\SmsVerification; use Intaro\RetailCrm\Component\Json\Mapping; use Intaro\RetailCrm\Model\Api\Response\AbstractApiResponseModel; /** * Class SmsVerificationConfirmResponse * * @package Intaro\RetailCrm\Model\Api\Response\SmsVerification */ class SmsVerificationConfirmResponse extends AbstractApiResponseModel { /** * @var bool * * @Mapping\Type("bool") * @Mapping\SerializedName("success") */ public $success; /** * @var \Intaro\RetailCrm\Model\Api\SmsVerification * * @Mapping\Type("\Intaro\RetailCrm\Model\Api\SmsVerification") * @Mapping\SerializedName("verification") */ public $verification; }