DescribeVerifyToken API Add Parameters-UserIp and UserPhoneNumber and UserRegistTime.
This commit is contained in:
@@ -43,6 +43,8 @@ namespace AlibabaCloud
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
std::string getCallbackSeed()const;
|
||||
void setCallbackSeed(const std::string& callbackSeed);
|
||||
std::string getUserIp()const;
|
||||
void setUserIp(const std::string& userIp);
|
||||
std::string getIdCardBackImageUrl()const;
|
||||
void setIdCardBackImageUrl(const std::string& idCardBackImageUrl);
|
||||
std::string getIdCardNumber()const;
|
||||
@@ -53,10 +55,14 @@ namespace AlibabaCloud
|
||||
void setBizType(const std::string& bizType);
|
||||
std::string getPassedRedirectUrl()const;
|
||||
void setPassedRedirectUrl(const std::string& passedRedirectUrl);
|
||||
long getUserRegistTime()const;
|
||||
void setUserRegistTime(long userRegistTime);
|
||||
std::string getBizId()const;
|
||||
void setBizId(const std::string& bizId);
|
||||
std::string getName()const;
|
||||
void setName(const std::string& name);
|
||||
std::string getUserPhoneNumber()const;
|
||||
void setUserPhoneNumber(const std::string& userPhoneNumber);
|
||||
std::string getCallbackUrl()const;
|
||||
void setCallbackUrl(const std::string& callbackUrl);
|
||||
std::string getFailedRedirectUrl()const;
|
||||
@@ -67,13 +73,16 @@ namespace AlibabaCloud
|
||||
std::string userId_;
|
||||
std::string sourceIp_;
|
||||
std::string callbackSeed_;
|
||||
std::string userIp_;
|
||||
std::string idCardBackImageUrl_;
|
||||
std::string idCardNumber_;
|
||||
std::string idCardFrontImageUrl_;
|
||||
std::string bizType_;
|
||||
std::string passedRedirectUrl_;
|
||||
long userRegistTime_;
|
||||
std::string bizId_;
|
||||
std::string name_;
|
||||
std::string userPhoneNumber_;
|
||||
std::string callbackUrl_;
|
||||
std::string failedRedirectUrl_;
|
||||
|
||||
|
||||
@@ -71,6 +71,17 @@ void DescribeVerifyTokenRequest::setCallbackSeed(const std::string& callbackSeed
|
||||
setParameter("CallbackSeed", callbackSeed);
|
||||
}
|
||||
|
||||
std::string DescribeVerifyTokenRequest::getUserIp()const
|
||||
{
|
||||
return userIp_;
|
||||
}
|
||||
|
||||
void DescribeVerifyTokenRequest::setUserIp(const std::string& userIp)
|
||||
{
|
||||
userIp_ = userIp;
|
||||
setParameter("UserIp", userIp);
|
||||
}
|
||||
|
||||
std::string DescribeVerifyTokenRequest::getIdCardBackImageUrl()const
|
||||
{
|
||||
return idCardBackImageUrl_;
|
||||
@@ -126,6 +137,17 @@ void DescribeVerifyTokenRequest::setPassedRedirectUrl(const std::string& passedR
|
||||
setParameter("PassedRedirectUrl", passedRedirectUrl);
|
||||
}
|
||||
|
||||
long DescribeVerifyTokenRequest::getUserRegistTime()const
|
||||
{
|
||||
return userRegistTime_;
|
||||
}
|
||||
|
||||
void DescribeVerifyTokenRequest::setUserRegistTime(long userRegistTime)
|
||||
{
|
||||
userRegistTime_ = userRegistTime;
|
||||
setParameter("UserRegistTime", std::to_string(userRegistTime));
|
||||
}
|
||||
|
||||
std::string DescribeVerifyTokenRequest::getBizId()const
|
||||
{
|
||||
return bizId_;
|
||||
@@ -148,6 +170,17 @@ void DescribeVerifyTokenRequest::setName(const std::string& name)
|
||||
setParameter("Name", name);
|
||||
}
|
||||
|
||||
std::string DescribeVerifyTokenRequest::getUserPhoneNumber()const
|
||||
{
|
||||
return userPhoneNumber_;
|
||||
}
|
||||
|
||||
void DescribeVerifyTokenRequest::setUserPhoneNumber(const std::string& userPhoneNumber)
|
||||
{
|
||||
userPhoneNumber_ = userPhoneNumber;
|
||||
setParameter("UserPhoneNumber", userPhoneNumber);
|
||||
}
|
||||
|
||||
std::string DescribeVerifyTokenRequest::getCallbackUrl()const
|
||||
{
|
||||
return callbackUrl_;
|
||||
|
||||
Reference in New Issue
Block a user