Class: TencentCloud::Tcb::V20180608::CreateUserRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcb::V20180608::CreateUserRequest
- Defined in:
- lib/v20180608/models.rb
Overview
CreateUser请求参数结构体
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, name = nil, uid = nil, type = nil, password = nil, userstatus = nil, nickname = nil, phone = nil, email = nil, avatarurl = nil, description = nil) ⇒ CreateUserRequest
constructor
A new instance of CreateUserRequest.
Constructor Details
#initialize(envid = nil, name = nil, uid = nil, type = nil, password = nil, userstatus = nil, nickname = nil, phone = nil, email = nil, avatarurl = nil, description = nil) ⇒ CreateUserRequest
Returns a new instance of CreateUserRequest.
2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 |
# File 'lib/v20180608/models.rb', line 2535 def initialize(envid=nil, name=nil, uid=nil, type=nil, password=nil, userstatus=nil, nickname=nil, phone=nil, email=nil, avatarurl=nil, description=nil) @EnvId = envid @Name = name @Uid = uid @Type = type @Password = password @UserStatus = userstatus @NickName = nickname @Phone = phone @Email = email @AvatarUrl = avatarurl @Description = description end |
Instance Attribute Details
#AvatarUrl ⇒ Object
2533 2534 2535 |
# File 'lib/v20180608/models.rb', line 2533 def AvatarUrl @AvatarUrl end |
#Description ⇒ Object
2533 2534 2535 |
# File 'lib/v20180608/models.rb', line 2533 def Description @Description end |
#Email ⇒ Object
2533 2534 2535 |
# File 'lib/v20180608/models.rb', line 2533 def Email @Email end |
#EnvId ⇒ Object
2533 2534 2535 |
# File 'lib/v20180608/models.rb', line 2533 def EnvId @EnvId end |
#Name ⇒ Object
2533 2534 2535 |
# File 'lib/v20180608/models.rb', line 2533 def Name @Name end |
#NickName ⇒ Object
2533 2534 2535 |
# File 'lib/v20180608/models.rb', line 2533 def NickName @NickName end |
#Password ⇒ Object
2533 2534 2535 |
# File 'lib/v20180608/models.rb', line 2533 def Password @Password end |
#Phone ⇒ Object
2533 2534 2535 |
# File 'lib/v20180608/models.rb', line 2533 def Phone @Phone end |
#Type ⇒ Object
2533 2534 2535 |
# File 'lib/v20180608/models.rb', line 2533 def Type @Type end |
#Uid ⇒ Object
2533 2534 2535 |
# File 'lib/v20180608/models.rb', line 2533 def Uid @Uid end |
#UserStatus ⇒ Object
2533 2534 2535 |
# File 'lib/v20180608/models.rb', line 2533 def UserStatus @UserStatus end |
Instance Method Details
#deserialize(params) ⇒ Object
2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 |
# File 'lib/v20180608/models.rb', line 2549 def deserialize(params) @EnvId = params['EnvId'] @Name = params['Name'] @Uid = params['Uid'] @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 |