Class: TencentCloud::Dlc::V20210125::DescribeUserTypeRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20210125/models.rb

Overview

DescribeUserType请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(userid = nil, accounttype = nil) ⇒ DescribeUserTypeRequest

Returns a new instance of DescribeUserTypeRequest.



10192
10193
10194
10195
# File 'lib/v20210125/models.rb', line 10192

def initialize(userid=nil, accounttype=nil)
  @UserId = userid
  @AccountType = accounttype
end

Instance Attribute Details

#AccountTypeObject

Parameters:

  • UserId:

    用户ID(UIN),如果不填默认为调用方的子UIN

  • AccountType:

    用户来源类型TencentAccount(普通腾讯云用户) / EntraAccount(微软用户)



10190
10191
10192
# File 'lib/v20210125/models.rb', line 10190

def AccountType
  @AccountType
end

#UserIdObject

Parameters:

  • UserId:

    用户ID(UIN),如果不填默认为调用方的子UIN

  • AccountType:

    用户来源类型TencentAccount(普通腾讯云用户) / EntraAccount(微软用户)



10190
10191
10192
# File 'lib/v20210125/models.rb', line 10190

def UserId
  @UserId
end

Instance Method Details

#deserialize(params) ⇒ Object



10197
10198
10199
10200
# File 'lib/v20210125/models.rb', line 10197

def deserialize(params)
  @UserId = params['UserId']
  @AccountType = params['AccountType']
end