Class: TencentCloud::Iotexplorer::V20190423::GetTWeCallActiveStatusResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotexplorer::V20190423::GetTWeCallActiveStatusResponse
- Defined in:
- lib/v20190423/models.rb
Overview
GetTWeCallActiveStatus返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(twecallactiveinfos = nil, requestid = nil) ⇒ GetTWeCallActiveStatusResponse
constructor
A new instance of GetTWeCallActiveStatusResponse.
Constructor Details
#initialize(twecallactiveinfos = nil, requestid = nil) ⇒ GetTWeCallActiveStatusResponse
Returns a new instance of GetTWeCallActiveStatusResponse.
9031 9032 9033 9034 |
# File 'lib/v20190423/models.rb', line 9031 def initialize(twecallactiveinfos=nil, requestid=nil) @TWeCallActiveInfos = twecallactiveinfos @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
9029 9030 9031 |
# File 'lib/v20190423/models.rb', line 9029 def RequestId @RequestId end |
#TWeCallActiveInfos ⇒ Object
9029 9030 9031 |
# File 'lib/v20190423/models.rb', line 9029 def TWeCallActiveInfos @TWeCallActiveInfos end |
Instance Method Details
#deserialize(params) ⇒ Object
9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 |
# File 'lib/v20190423/models.rb', line 9036 def deserialize(params) unless params['TWeCallActiveInfos'].nil? @TWeCallActiveInfos = [] params['TWeCallActiveInfos'].each do |i| twecallactiveinfo_tmp = TWeCallActiveInfo.new twecallactiveinfo_tmp.deserialize(i) @TWeCallActiveInfos << twecallactiveinfo_tmp end end @RequestId = params['RequestId'] end |