Class: TencentCloud::Iotvideoindustry::V20201201::GetRecordPlansResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotvideoindustry::V20201201::GetRecordPlansResponse
- Defined in:
- lib/v20201201/models.rb
Overview
GetRecordPlans返回参数结构体
Instance Attribute Summary collapse
-
#Plans ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(plans = nil, totalcount = nil, requestid = nil) ⇒ GetRecordPlansResponse
constructor
A new instance of GetRecordPlansResponse.
Constructor Details
#initialize(plans = nil, totalcount = nil, requestid = nil) ⇒ GetRecordPlansResponse
Returns a new instance of GetRecordPlansResponse.
4593 4594 4595 4596 4597 |
# File 'lib/v20201201/models.rb', line 4593 def initialize(plans=nil, totalcount=nil, requestid=nil) @Plans = plans @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#Plans ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4591 4592 4593 |
# File 'lib/v20201201/models.rb', line 4591 def Plans @Plans end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4591 4592 4593 |
# File 'lib/v20201201/models.rb', line 4591 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4591 4592 4593 |
# File 'lib/v20201201/models.rb', line 4591 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 |
# File 'lib/v20201201/models.rb', line 4599 def deserialize(params) unless params['Plans'].nil? @Plans = [] params['Plans'].each do |i| recordplanitem_tmp = RecordPlanItem.new recordplanitem_tmp.deserialize(i) @Plans << recordplanitem_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |