Class: TencentCloud::Tcb::V20180608::ModifyUserRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcb::V20180608::ModifyUserRequest
- Defined in:
- lib/v20180608/models.rb
Overview
ModifyUser请求参数结构体
Instance Attribute Summary collapse
- #AvatarUrl ⇒ Object
- #Description ⇒ Object
- #Email ⇒ Object
- #EnvId ⇒ Object
- #Name ⇒ Object
- #NickName ⇒ Object
- #Password ⇒ Object
- #Phone ⇒ Object
- #Type ⇒ Object
- #Uid ⇒ Object
- #UserStatus ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(envid = nil, uid = nil, name = nil, type = nil, password = nil, userstatus = nil, nickname = nil, phone = nil, email = nil, avatarurl = nil, description = nil) ⇒ ModifyUserRequest
constructor
A new instance of ModifyUserRequest.
Constructor Details
#initialize(envid = nil, uid = nil, name = nil, type = nil, password = nil, userstatus = nil, nickname = nil, phone = nil, email = nil, avatarurl = nil, description = nil) ⇒ ModifyUserRequest
Returns a new instance of ModifyUserRequest.
8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 |
# File 'lib/v20180608/models.rb', line 8000 def initialize(envid=nil, uid=nil, name=nil, type=nil, password=nil, userstatus=nil, nickname=nil, phone=nil, email=nil, avatarurl=nil, description=nil) @EnvId = envid @Uid = uid @Name = name @Type = type @Password = password @UserStatus = userstatus @NickName = nickname @Phone = phone @Email = email @AvatarUrl = avatarurl @Description = description end |
Instance Attribute Details
#AvatarUrl ⇒ Object
7998 7999 8000 |
# File 'lib/v20180608/models.rb', line 7998 def AvatarUrl @AvatarUrl end |
#Description ⇒ Object
7998 7999 8000 |
# File 'lib/v20180608/models.rb', line 7998 def Description @Description end |
#Email ⇒ Object
7998 7999 8000 |
# File 'lib/v20180608/models.rb', line 7998 def Email @Email end |
#EnvId ⇒ Object
7998 7999 8000 |
# File 'lib/v20180608/models.rb', line 7998 def EnvId @EnvId end |
#Name ⇒ Object
7998 7999 8000 |
# File 'lib/v20180608/models.rb', line 7998 def Name @Name end |
#NickName ⇒ Object
7998 7999 8000 |
# File 'lib/v20180608/models.rb', line 7998 def NickName @NickName end |
#Password ⇒ Object
7998 7999 8000 |
# File 'lib/v20180608/models.rb', line 7998 def Password @Password end |
#Phone ⇒ Object
7998 7999 8000 |
# File 'lib/v20180608/models.rb', line 7998 def Phone @Phone end |
#Type ⇒ Object
7998 7999 8000 |
# File 'lib/v20180608/models.rb', line 7998 def Type @Type end |
#Uid ⇒ Object
7998 7999 8000 |
# File 'lib/v20180608/models.rb', line 7998 def Uid @Uid end |
#UserStatus ⇒ Object
7998 7999 8000 |
# File 'lib/v20180608/models.rb', line 7998 def UserStatus @UserStatus end |
Instance Method Details
#deserialize(params) ⇒ Object
8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 |
# File 'lib/v20180608/models.rb', line 8014 def deserialize(params) @EnvId = params['EnvId'] @Uid = params['Uid'] @Name = params['Name'] @Type = params['Type'] @Password = params['Password'] @UserStatus = params['UserStatus'] @NickName = params['NickName'] @Phone = params['Phone'] @Email = params['Email'] @AvatarUrl = params['AvatarUrl'] @Description = params['Description'] end |