Class: TencentCloud::Wav::V20210129::QueryActivityJoinListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wav::V20210129::QueryActivityJoinListResponse
- Defined in:
- lib/v20210129/models.rb
Overview
QueryActivityJoinList返回参数结构体
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) ⇒ QueryActivityJoinListResponse
constructor
A new instance of QueryActivityJoinListResponse.
Constructor Details
#initialize(nextcursor = nil, pagedata = nil, requestid = nil) ⇒ QueryActivityJoinListResponse
Returns a new instance of QueryActivityJoinListResponse.
1931 1932 1933 1934 1935 |
# File 'lib/v20210129/models.rb', line 1931 def initialize(nextcursor=nil, pagedata=nil, requestid=nil) @NextCursor = nextcursor @PageData = pagedata @RequestId = requestid end |
Instance Attribute Details
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1929 1930 1931 |
# File 'lib/v20210129/models.rb', line 1929 def NextCursor @NextCursor end |
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1929 1930 1931 |
# File 'lib/v20210129/models.rb', line 1929 def PageData @PageData end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1929 1930 1931 |
# File 'lib/v20210129/models.rb', line 1929 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 |
# File 'lib/v20210129/models.rb', line 1937 def deserialize(params) @NextCursor = params['NextCursor'] unless params['PageData'].nil? @PageData = [] params['PageData'].each do |i| activityjoindetail_tmp = ActivityJoinDetail.new activityjoindetail_tmp.deserialize(i) @PageData << activityjoindetail_tmp end end @RequestId = params['RequestId'] end |