tencentcloud-sdk-bi 3.0.898 → 3.0.899
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20220105/models.rb +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dcf5dbfe6db044bfc51ae46a3097268ae312cefa
|
|
4
|
+
data.tar.gz: a90ee711142aec824cac2d8adcca78dded69c119
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b6981c2753c9d15e314f31a40c7335eb83a1dae8835a2ca6b6879553a2a5b37e6daacbd0e57e5bade062a27843e5ad96ab2d4e6bec002e3bb217d2fad6edf98
|
|
7
|
+
data.tar.gz: f5eb112fb574b05bcc6b8c9c6389ad3195a3bbf11a6afcdab7e40e7f9504cfe47642ec7be5bf76ffed6d3956d6ee7f33e39528c8f191404f18faa58742de5569
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.899
|
data/lib/v20220105/models.rb
CHANGED
|
@@ -2393,10 +2393,12 @@ module TencentCloud
|
|
|
2393
2393
|
# @type AreaCode: String
|
|
2394
2394
|
# @param AppUserId: 企业微信应用用户id
|
|
2395
2395
|
# @type AppUserId: String
|
|
2396
|
+
# @param LoginSecurityStatus: 是否开启手机验证码登录(0 关闭,1 开启)
|
|
2397
|
+
# @type LoginSecurityStatus: Integer
|
|
2396
2398
|
|
|
2397
|
-
attr_accessor :UserId, :RoleIdList, :Email, :UserName, :PhoneNumber, :AreaCode, :AppUserId
|
|
2399
|
+
attr_accessor :UserId, :RoleIdList, :Email, :UserName, :PhoneNumber, :AreaCode, :AppUserId, :LoginSecurityStatus
|
|
2398
2400
|
|
|
2399
|
-
def initialize(userid=nil, roleidlist=nil, email=nil, username=nil, phonenumber=nil, areacode=nil, appuserid=nil)
|
|
2401
|
+
def initialize(userid=nil, roleidlist=nil, email=nil, username=nil, phonenumber=nil, areacode=nil, appuserid=nil, loginsecuritystatus=nil)
|
|
2400
2402
|
@UserId = userid
|
|
2401
2403
|
@RoleIdList = roleidlist
|
|
2402
2404
|
@Email = email
|
|
@@ -2404,6 +2406,7 @@ module TencentCloud
|
|
|
2404
2406
|
@PhoneNumber = phonenumber
|
|
2405
2407
|
@AreaCode = areacode
|
|
2406
2408
|
@AppUserId = appuserid
|
|
2409
|
+
@LoginSecurityStatus = loginsecuritystatus
|
|
2407
2410
|
end
|
|
2408
2411
|
|
|
2409
2412
|
def deserialize(params)
|
|
@@ -2414,6 +2417,7 @@ module TencentCloud
|
|
|
2414
2417
|
@PhoneNumber = params['PhoneNumber']
|
|
2415
2418
|
@AreaCode = params['AreaCode']
|
|
2416
2419
|
@AppUserId = params['AppUserId']
|
|
2420
|
+
@LoginSecurityStatus = params['LoginSecurityStatus']
|
|
2417
2421
|
end
|
|
2418
2422
|
end
|
|
2419
2423
|
|