Class: TencentCloud::Iotvideoindustry::V20201201::DescribeRecordingPlanByIdResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotvideoindustry::V20201201::DescribeRecordingPlanByIdResponse
- Defined in:
- lib/v20201201/models.rb
Overview
DescribeRecordingPlanById返回参数结构体
Instance Attribute Summary collapse
-
#Plan ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(plan = nil, requestid = nil) ⇒ DescribeRecordingPlanByIdResponse
constructor
A new instance of DescribeRecordingPlanByIdResponse.
Constructor Details
#initialize(plan = nil, requestid = nil) ⇒ DescribeRecordingPlanByIdResponse
Returns a new instance of DescribeRecordingPlanByIdResponse.
3517 3518 3519 3520 |
# File 'lib/v20201201/models.rb', line 3517 def initialize(plan=nil, requestid=nil) @Plan = plan @RequestId = requestid end |
Instance Attribute Details
#Plan ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3515 3516 3517 |
# File 'lib/v20201201/models.rb', line 3515 def Plan @Plan end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3515 3516 3517 |
# File 'lib/v20201201/models.rb', line 3515 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
3522 3523 3524 3525 3526 3527 3528 |
# File 'lib/v20201201/models.rb', line 3522 def deserialize(params) unless params['Plan'].nil? @Plan = RecordPlanDetail.new @Plan.deserialize(params['Plan']) end @RequestId = params['RequestId'] end |