Class: TencentCloud::Iotvideoindustry::V20201201::DescribeLiveVideoListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotvideoindustry::V20201201::DescribeLiveVideoListResponse
- Defined in:
- lib/v20201201/models.rb
Overview
DescribeLiveVideoList返回参数结构体
Instance Attribute Summary collapse
-
#RecordList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, recordlist = nil, requestid = nil) ⇒ DescribeLiveVideoListResponse
constructor
A new instance of DescribeLiveVideoListResponse.
Constructor Details
#initialize(total = nil, recordlist = nil, requestid = nil) ⇒ DescribeLiveVideoListResponse
Returns a new instance of DescribeLiveVideoListResponse.
3051 3052 3053 3054 3055 |
# File 'lib/v20201201/models.rb', line 3051 def initialize(total=nil, recordlist=nil, requestid=nil) @Total = total @RecordList = recordlist @RequestId = requestid end |
Instance Attribute Details
#RecordList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3049 3050 3051 |
# File 'lib/v20201201/models.rb', line 3049 def RecordList @RecordList end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3049 3050 3051 |
# File 'lib/v20201201/models.rb', line 3049 def RequestId @RequestId end |
#Total ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
3049 3050 3051 |
# File 'lib/v20201201/models.rb', line 3049 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 |
# File 'lib/v20201201/models.rb', line 3057 def deserialize(params) @Total = params['Total'] unless params['RecordList'].nil? @RecordList = [] params['RecordList'].each do |i| liverecorditem_tmp = LiveRecordItem.new liverecorditem_tmp.deserialize(i) @RecordList << liverecorditem_tmp end end @RequestId = params['RequestId'] end |