Class: TencentCloud::Ess::V20201111::CreateUserMobileChangeUrlRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::CreateUserMobileChangeUrlRequest
- Defined in:
- lib/v20201111/models.rb
Overview
CreateUserMobileChangeUrl请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。.
-
#Endpoint ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。.
-
#IdCardNumber ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。.
-
#IdCardType ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。.
-
#Name ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。.
-
#Operator ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。.
-
#UserAccountType ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。.
-
#UserData ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。.
-
#UserId ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(operator = nil, agent = nil, userid = nil, useraccounttype = nil, name = nil, idcardtype = nil, idcardnumber = nil, endpoint = nil, userdata = nil) ⇒ CreateUserMobileChangeUrlRequest
constructor
A new instance of CreateUserMobileChangeUrlRequest.
Constructor Details
#initialize(operator = nil, agent = nil, userid = nil, useraccounttype = nil, name = nil, idcardtype = nil, idcardnumber = nil, endpoint = nil, userdata = nil) ⇒ CreateUserMobileChangeUrlRequest
Returns a new instance of CreateUserMobileChangeUrlRequest.
8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 |
# File 'lib/v20201111/models.rb', line 8194 def initialize(operator=nil, agent=nil, userid=nil, useraccounttype=nil, name=nil, idcardtype=nil, idcardnumber=nil, endpoint=nil, userdata=nil) @Operator = operator @Agent = agent @UserId = userid @UserAccountType = useraccounttype @Name = name @IdCardType = idcardtype @IdCardNumber = idcardnumber @Endpoint = endpoint @UserData = userdata end |
Instance Attribute Details
#Agent ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。
8192 8193 8194 |
# File 'lib/v20201111/models.rb', line 8192 def Agent @Agent end |
#Endpoint ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。
8192 8193 8194 |
# File 'lib/v20201111/models.rb', line 8192 def Endpoint @Endpoint end |
#IdCardNumber ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。
8192 8193 8194 |
# File 'lib/v20201111/models.rb', line 8192 def IdCardNumber @IdCardNumber end |
#IdCardType ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。
8192 8193 8194 |
# File 'lib/v20201111/models.rb', line 8192 def IdCardType @IdCardType end |
#Name ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。
8192 8193 8194 |
# File 'lib/v20201111/models.rb', line 8192 def Name @Name end |
#Operator ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。
8192 8193 8194 |
# File 'lib/v20201111/models.rb', line 8192 def Operator @Operator end |
#UserAccountType ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。
8192 8193 8194 |
# File 'lib/v20201111/models.rb', line 8192 def UserAccountType @UserAccountType end |
#UserData ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。
8192 8193 8194 |
# File 'lib/v20201111/models.rb', line 8192 def UserData @UserData end |
#UserId ⇒ Object
请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。
8192 8193 8194 |
# File 'lib/v20201111/models.rb', line 8192 def UserId @UserId end |
Instance Method Details
#deserialize(params) ⇒ Object
8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 |
# File 'lib/v20201111/models.rb', line 8206 def deserialize(params) unless params['Operator'].nil? @Operator = UserInfo.new @Operator.deserialize(params['Operator']) end unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end @UserId = params['UserId'] @UserAccountType = params['UserAccountType'] @Name = params['Name'] @IdCardType = params['IdCardType'] @IdCardNumber = params['IdCardNumber'] @Endpoint = params['Endpoint'] @UserData = params['UserData'] end |