Class: TencentCloud::Organization::V20210331::UserInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20210331::UserInfo
- Defined in:
- lib/v20210331/models.rb
Overview
用户信息
Instance Attribute Summary collapse
- #CreateTime ⇒ Object
- #Description ⇒ Object
- #DisplayName ⇒ Object
- #Email ⇒ Object
- #FirstName ⇒ Object
- #IsSelected ⇒ Object
- #LastName ⇒ Object
- #NeedResetPassword ⇒ Object
- #Password ⇒ Object
- #UpdateTime ⇒ Object
- #UserId ⇒ Object
- #UserName ⇒ Object
- #UserStatus ⇒ Object
- #UserType ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(username = nil, firstname = nil, lastname = nil, displayname = nil, description = nil, email = nil, userstatus = nil, usertype = nil, userid = nil, createtime = nil, updatetime = nil, isselected = nil, password = nil, needresetpassword = nil) ⇒ UserInfo
constructor
A new instance of UserInfo.
Constructor Details
#initialize(username = nil, firstname = nil, lastname = nil, displayname = nil, description = nil, email = nil, userstatus = nil, usertype = nil, userid = nil, createtime = nil, updatetime = nil, isselected = nil, password = nil, needresetpassword = nil) ⇒ UserInfo
Returns a new instance of UserInfo.
8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 |
# File 'lib/v20210331/models.rb', line 8620 def initialize(username=nil, firstname=nil, lastname=nil, displayname=nil, description=nil, email=nil, userstatus=nil, usertype=nil, userid=nil, createtime=nil, updatetime=nil, isselected=nil, password=nil, needresetpassword=nil) @UserName = username @FirstName = firstname @LastName = lastname @DisplayName = displayname @Description = description @Email = email @UserStatus = userstatus @UserType = usertype @UserId = userid @CreateTime = createtime @UpdateTime = updatetime @IsSelected = isselected @Password = password @NeedResetPassword = needresetpassword end |
Instance Attribute Details
#CreateTime ⇒ Object
8618 8619 8620 |
# File 'lib/v20210331/models.rb', line 8618 def CreateTime @CreateTime end |
#Description ⇒ Object
8618 8619 8620 |
# File 'lib/v20210331/models.rb', line 8618 def Description @Description end |
#DisplayName ⇒ Object
8618 8619 8620 |
# File 'lib/v20210331/models.rb', line 8618 def DisplayName @DisplayName end |
#Email ⇒ Object
8618 8619 8620 |
# File 'lib/v20210331/models.rb', line 8618 def Email @Email end |
#FirstName ⇒ Object
8618 8619 8620 |
# File 'lib/v20210331/models.rb', line 8618 def FirstName @FirstName end |
#IsSelected ⇒ Object
8618 8619 8620 |
# File 'lib/v20210331/models.rb', line 8618 def IsSelected @IsSelected end |
#LastName ⇒ Object
8618 8619 8620 |
# File 'lib/v20210331/models.rb', line 8618 def LastName @LastName end |
#NeedResetPassword ⇒ Object
8618 8619 8620 |
# File 'lib/v20210331/models.rb', line 8618 def NeedResetPassword @NeedResetPassword end |
#Password ⇒ Object
8618 8619 8620 |
# File 'lib/v20210331/models.rb', line 8618 def Password @Password end |
#UpdateTime ⇒ Object
8618 8619 8620 |
# File 'lib/v20210331/models.rb', line 8618 def UpdateTime @UpdateTime end |
#UserId ⇒ Object
8618 8619 8620 |
# File 'lib/v20210331/models.rb', line 8618 def UserId @UserId end |
#UserName ⇒ Object
8618 8619 8620 |
# File 'lib/v20210331/models.rb', line 8618 def UserName @UserName end |
#UserStatus ⇒ Object
8618 8619 8620 |
# File 'lib/v20210331/models.rb', line 8618 def UserStatus @UserStatus end |
#UserType ⇒ Object
8618 8619 8620 |
# File 'lib/v20210331/models.rb', line 8618 def UserType @UserType end |
Instance Method Details
#deserialize(params) ⇒ Object
8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 |
# File 'lib/v20210331/models.rb', line 8637 def deserialize(params) @UserName = params['UserName'] @FirstName = params['FirstName'] @LastName = params['LastName'] @DisplayName = params['DisplayName'] @Description = params['Description'] @Email = params['Email'] @UserStatus = params['UserStatus'] @UserType = params['UserType'] @UserId = params['UserId'] @CreateTime = params['CreateTime'] @UpdateTime = params['UpdateTime'] @IsSelected = params['IsSelected'] @Password = params['Password'] @NeedResetPassword = params['NeedResetPassword'] end |