Class: TencentCloud::Weilingwith::V20230427::VideoCloudRecordRes
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Weilingwith::V20230427::VideoCloudRecordRes
- Defined in:
- lib/v20230427/models.rb
Overview
云录像接口结果
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, recordset = nil) ⇒ VideoCloudRecordRes
constructor
A new instance of VideoCloudRecordRes.
Constructor Details
#initialize(totalcount = nil, recordset = nil) ⇒ VideoCloudRecordRes
Returns a new instance of VideoCloudRecordRes.
7573 7574 7575 7576 |
# File 'lib/v20230427/models.rb', line 7573 def initialize(totalcount=nil, recordset=nil) @TotalCount = totalcount @RecordSet = recordset end |
Instance Attribute Details
#RecordSet ⇒ Object
7571 7572 7573 |
# File 'lib/v20230427/models.rb', line 7571 def RecordSet @RecordSet end |
#TotalCount ⇒ Object
7571 7572 7573 |
# File 'lib/v20230427/models.rb', line 7571 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 |
# File 'lib/v20230427/models.rb', line 7578 def deserialize(params) @TotalCount = params['TotalCount'] unless params['RecordSet'].nil? @RecordSet = [] params['RecordSet'].each do |i| recordinfo_tmp = RecordInfo.new recordinfo_tmp.deserialize(i) @RecordSet << recordinfo_tmp end end end |