Просмотр исходного кода

DescribeVerifyToken API Add Parameters-UserIp and UserPhoneNumber and UserRegistTime.

sdk-team 6 лет назад
Родитель
Сommit
677473908b

+ 3 - 0
CHANGELOG

@@ -1,3 +1,6 @@
+2020-04-01 Version: 1.36.335
+- DescribeVerifyToken API Add Parameters-UserIp and UserPhoneNumber and UserRegistTime.
+
 2020-04-01 Version: 1.36.334
 - Parameters is string in StartExecution Response.
 

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.334
+1.36.335

+ 9 - 0
cloudauth/include/alibabacloud/cloudauth/model/DescribeVerifyTokenRequest.h

@@ -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_;
 

+ 33 - 0
cloudauth/src/model/DescribeVerifyTokenRequest.cc

@@ -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_;