1
0
Fork 0
mirror of synced 2025-04-20 01:21:01 +00:00

codestyle fix

This commit is contained in:
Sergey Chazov 2020-09-03 14:11:55 +03:00
parent 696115057c
commit d00b08e33a
2 changed files with 4 additions and 32 deletions

View file

@ -9,6 +9,7 @@
* @link http://retailcrm.ru
* @see http://retailcrm.ru/docs
*/
namespace Intaro\RetailCrm\Model\Api\Response\SmsVerification;
use Intaro\RetailCrm\Model\Api\AbstractApiModel;
@ -19,21 +20,6 @@ use Intaro\RetailCrm\Component\Json\Mapping;
*
* @package Intaro\RetailCrm\Model\Api\Response\SmsVerification
*/
class SmsVerificationCreateResponse extends AbstractApiModel
class SmsVerificationCreateResponse extends SmsVerificationConfirmResponse
{
/**
* @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;
}

View file

@ -9,6 +9,7 @@
* @link http://retailcrm.ru
* @see http://retailcrm.ru/docs
*/
namespace Intaro\RetailCrm\Model\Api\Response\SmsVerification;
use Intaro\RetailCrm\Model\Api\AbstractApiModel;
@ -19,21 +20,6 @@ use Intaro\RetailCrm\Component\Json\Mapping;
*
* @package Intaro\RetailCrm\Model\Api\Response\SmsVerification
*/
class SmsVerificationStatusResponse extends AbstractApiModel
class SmsVerificationStatusResponse extends SmsVerificationConfirmResponse
{
/**
* @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;
}