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.
9043 9044 9045 9046 |
# File 'lib/v20190423/models.rb', line 9043 def initialize(twecallactiveinfos=nil, requestid=nil) @TWeCallActiveInfos = twecallactiveinfos @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
9041 9042 9043 |
# File 'lib/v20190423/models.rb', line 9041 def RequestId @RequestId end |
#TWeCallActiveInfos ⇒ Object
9041 9042 9043 |
# File 'lib/v20190423/models.rb', line 9041 def TWeCallActiveInfos @TWeCallActiveInfos end |
Instance Method Details
#deserialize(params) ⇒ Object
9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 |
# File 'lib/v20190423/models.rb', line 9048 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 |