Class: TencentCloud::Cam::V20190116::UpdateUserRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cam::V20190116::UpdateUserRequest
- Defined in:
- lib/v20190116/models.rb
Overview
UpdateUser请求参数结构体
Instance Attribute Summary collapse
- #ConsoleLogin ⇒ Object
- #CountryCode ⇒ Object
- #Email ⇒ Object
- #Name ⇒ Object
- #NeedResetPassword ⇒ Object
- #Password ⇒ Object
- #PhoneNum ⇒ Object
- #Remark ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, remark = nil, consolelogin = nil, password = nil, needresetpassword = nil, phonenum = nil, countrycode = nil, email = nil) ⇒ UpdateUserRequest
constructor
A new instance of UpdateUserRequest.
Constructor Details
#initialize(name = nil, remark = nil, consolelogin = nil, password = nil, needresetpassword = nil, phonenum = nil, countrycode = nil, email = nil) ⇒ UpdateUserRequest
Returns a new instance of UpdateUserRequest.
5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 |
# File 'lib/v20190116/models.rb', line 5318 def initialize(name=nil, remark=nil, consolelogin=nil, password=nil, needresetpassword=nil, phonenum=nil, countrycode=nil, email=nil) @Name = name @Remark = remark @ConsoleLogin = consolelogin @Password = password @NeedResetPassword = needresetpassword @PhoneNum = phonenum @CountryCode = countrycode @Email = email end |
Instance Attribute Details
#ConsoleLogin ⇒ Object
5316 5317 5318 |
# File 'lib/v20190116/models.rb', line 5316 def ConsoleLogin @ConsoleLogin end |
#CountryCode ⇒ Object
5316 5317 5318 |
# File 'lib/v20190116/models.rb', line 5316 def CountryCode @CountryCode end |
#Email ⇒ Object
5316 5317 5318 |
# File 'lib/v20190116/models.rb', line 5316 def Email @Email end |
#Name ⇒ Object
5316 5317 5318 |
# File 'lib/v20190116/models.rb', line 5316 def Name @Name end |
#NeedResetPassword ⇒ Object
5316 5317 5318 |
# File 'lib/v20190116/models.rb', line 5316 def NeedResetPassword @NeedResetPassword end |
#Password ⇒ Object
5316 5317 5318 |
# File 'lib/v20190116/models.rb', line 5316 def Password @Password end |
#PhoneNum ⇒ Object
5316 5317 5318 |
# File 'lib/v20190116/models.rb', line 5316 def PhoneNum @PhoneNum end |
#Remark ⇒ Object
5316 5317 5318 |
# File 'lib/v20190116/models.rb', line 5316 def Remark @Remark end |
Instance Method Details
#deserialize(params) ⇒ Object
5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 |
# File 'lib/v20190116/models.rb', line 5329 def deserialize(params) @Name = params['Name'] @Remark = params['Remark'] @ConsoleLogin = params['ConsoleLogin'] @Password = params['Password'] @NeedResetPassword = params['NeedResetPassword'] @PhoneNum = params['PhoneNum'] @CountryCode = params['CountryCode'] @Email = params['Email'] end |