Class: TencentCloud::Wav::V20210129::QueryActivityLiveCodeListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wav::V20210129::QueryActivityLiveCodeListResponse
- Defined in:
- lib/v20210129/models.rb
Overview
QueryActivityLiveCodeList返回参数结构体
Instance Attribute Summary collapse
-
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(nextcursor = nil, pagedata = nil, requestid = nil) ⇒ QueryActivityLiveCodeListResponse
constructor
A new instance of QueryActivityLiveCodeListResponse.
Constructor Details
#initialize(nextcursor = nil, pagedata = nil, requestid = nil) ⇒ QueryActivityLiveCodeListResponse
Returns a new instance of QueryActivityLiveCodeListResponse.
2037 2038 2039 2040 2041 |
# File 'lib/v20210129/models.rb', line 2037 def initialize(nextcursor=nil, pagedata=nil, requestid=nil) @NextCursor = nextcursor @PageData = pagedata @RequestId = requestid end |
Instance Attribute Details
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2035 2036 2037 |
# File 'lib/v20210129/models.rb', line 2035 def NextCursor @NextCursor end |
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2035 2036 2037 |
# File 'lib/v20210129/models.rb', line 2035 def PageData @PageData end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2035 2036 2037 |
# File 'lib/v20210129/models.rb', line 2035 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 |
# File 'lib/v20210129/models.rb', line 2043 def deserialize(params) @NextCursor = params['NextCursor'] unless params['PageData'].nil? @PageData = [] params['PageData'].each do |i| livecodedetail_tmp = LiveCodeDetail.new livecodedetail_tmp.deserialize(i) @PageData << livecodedetail_tmp end end @RequestId = params['RequestId'] end |