Class: TencentCloud::Iss::V20230517::ListRecordBackupPlanDevicesData
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iss::V20230517::ListRecordBackupPlanDevicesData
- Defined in:
- lib/v20230517/models.rb
Overview
查询录像上云计划关联通道的返回数据
Instance Attribute Summary collapse
-
#List ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#PageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(pagenumber = nil, pagesize = nil, totalcount = nil, list = nil) ⇒ ListRecordBackupPlanDevicesData
constructor
A new instance of ListRecordBackupPlanDevicesData.
Constructor Details
#initialize(pagenumber = nil, pagesize = nil, totalcount = nil, list = nil) ⇒ ListRecordBackupPlanDevicesData
Returns a new instance of ListRecordBackupPlanDevicesData.
5323 5324 5325 5326 5327 5328 |
# File 'lib/v20230517/models.rb', line 5323 def initialize(pagenumber=nil, pagesize=nil, totalcount=nil, list=nil) @PageNumber = pagenumber @PageSize = pagesize @TotalCount = totalcount @List = list end |
Instance Attribute Details
#List ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5321 5322 5323 |
# File 'lib/v20230517/models.rb', line 5321 def List @List end |
#PageNumber ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5321 5322 5323 |
# File 'lib/v20230517/models.rb', line 5321 def PageNumber @PageNumber end |
#PageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5321 5322 5323 |
# File 'lib/v20230517/models.rb', line 5321 def PageSize @PageSize end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5321 5322 5323 |
# File 'lib/v20230517/models.rb', line 5321 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 |
# File 'lib/v20230517/models.rb', line 5330 def deserialize(params) @PageNumber = params['PageNumber'] @PageSize = params['PageSize'] @TotalCount = params['TotalCount'] unless params['List'].nil? @List = [] params['List'].each do |i| recordplanchannelinfo_tmp = RecordPlanChannelInfo.new recordplanchannelinfo_tmp.deserialize(i) @List << recordplanchannelinfo_tmp end end end |