Class: TencentCloud::Iotvideoindustry::V20201201::DescribeLiveRecordPlanIdsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotvideoindustry::V20201201::DescribeLiveRecordPlanIdsResponse
- Defined in:
- lib/v20201201/models.rb
Overview
DescribeLiveRecordPlanIds返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, plans = nil, requestid = nil) ⇒ DescribeLiveRecordPlanIdsResponse
constructor
A new instance of DescribeLiveRecordPlanIdsResponse.
Constructor Details
#initialize(totalcount = nil, plans = nil, requestid = nil) ⇒ DescribeLiveRecordPlanIdsResponse
Returns a new instance of DescribeLiveRecordPlanIdsResponse.
2922 2923 2924 2925 2926 |
# File 'lib/v20201201/models.rb', line 2922 def initialize(totalcount=nil, plans=nil, requestid=nil) @TotalCount = totalcount @Plans = plans @RequestId = requestid end |
Instance Attribute Details
#Plans ⇒ Object
2920 2921 2922 |
# File 'lib/v20201201/models.rb', line 2920 def Plans @Plans end |
#RequestId ⇒ Object
2920 2921 2922 |
# File 'lib/v20201201/models.rb', line 2920 def RequestId @RequestId end |
#TotalCount ⇒ Object
2920 2921 2922 |
# File 'lib/v20201201/models.rb', line 2920 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 |
# File 'lib/v20201201/models.rb', line 2928 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Plans'].nil? @Plans = [] params['Plans'].each do |i| liverecordplanitem_tmp = LiveRecordPlanItem.new liverecordplanitem_tmp.deserialize(i) @Plans << liverecordplanitem_tmp end end @RequestId = params['RequestId'] end |