Class: TencentCloud::Iotvideoindustry::V20201201::GetRecordPlanByIdResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotvideoindustry::V20201201::GetRecordPlanByIdResponse
- Defined in:
- lib/v20201201/models.rb
Overview
GetRecordPlanById返回参数结构体
Instance Attribute Summary collapse
-
#Plan ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(plan = nil, requestid = nil) ⇒ GetRecordPlanByIdResponse
constructor
A new instance of GetRecordPlanByIdResponse.
Constructor Details
#initialize(plan = nil, requestid = nil) ⇒ GetRecordPlanByIdResponse
Returns a new instance of GetRecordPlanByIdResponse.
4555 4556 4557 4558 |
# File 'lib/v20201201/models.rb', line 4555 def initialize(plan=nil, requestid=nil) @Plan = plan @RequestId = requestid end |
Instance Attribute Details
#Plan ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
4553 4554 4555 |
# File 'lib/v20201201/models.rb', line 4553 def Plan @Plan end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
4553 4554 4555 |
# File 'lib/v20201201/models.rb', line 4553 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
4560 4561 4562 4563 4564 4565 4566 |
# File 'lib/v20201201/models.rb', line 4560 def deserialize(params) unless params['Plan'].nil? @Plan = RecordPlanItem.new @Plan.deserialize(params['Plan']) end @RequestId = params['RequestId'] end |