32 lines
814 B
PHP
32 lines
814 B
PHP
<?php
|
|
|
|
/**
|
|
* @category Integration
|
|
* @package Intaro\RetailCrm\Model\Api\Request\SmsVerification
|
|
* @author RetailCRM <integration@retailcrm.ru>
|
|
* @license MIT
|
|
* @link http://retailcrm.ru
|
|
* @see http://retailcrm.ru/docs
|
|
*/
|
|
|
|
namespace Intaro\RetailCrm\Model\Api\Request\SmsVerification;
|
|
|
|
use Intaro\RetailCrm\Component\Json\Mapping;
|
|
use Intaro\RetailCrm\Model\Api\AbstractApiModel;
|
|
|
|
/**
|
|
* Class SmsVerificationConfirmRequest
|
|
*
|
|
* @package Intaro\RetailCrm\Model\Api\Response\SmsVerification
|
|
*/
|
|
class SmsVerificationConfirmRequest extends AbstractApiModel
|
|
{
|
|
/**
|
|
* @var \Intaro\RetailCrm\Model\Api\SmsVerificationConfirm
|
|
*
|
|
* @Mapping\Type("\Intaro\RetailCrm\Model\Api\SmsVerificationConfirm")
|
|
* @Mapping\SerializedName("verification")
|
|
*/
|
|
public $verification;
|
|
}
|