Class: TencentCloud::Wav::V20210129::QueryActivityListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wav::V20210129::QueryActivityListResponse
- Defined in:
- lib/v20210129/models.rb
Overview
QueryActivityList返回参数结构体
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) ⇒ QueryActivityListResponse
constructor
A new instance of QueryActivityListResponse.
Constructor Details
#initialize(nextcursor = nil, pagedata = nil, requestid = nil) ⇒ QueryActivityListResponse
Returns a new instance of QueryActivityListResponse.
1984 1985 1986 1987 1988 |
# File 'lib/v20210129/models.rb', line 1984 def initialize(nextcursor=nil, pagedata=nil, requestid=nil) @NextCursor = nextcursor @PageData = pagedata @RequestId = requestid end |
Instance Attribute Details
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1982 1983 1984 |
# File 'lib/v20210129/models.rb', line 1982 def NextCursor @NextCursor end |
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1982 1983 1984 |
# File 'lib/v20210129/models.rb', line 1982 def PageData @PageData end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1982 1983 1984 |
# File 'lib/v20210129/models.rb', line 1982 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 |
# File 'lib/v20210129/models.rb', line 1990 def deserialize(params) @NextCursor = params['NextCursor'] unless params['PageData'].nil? @PageData = [] params['PageData'].each do |i| activitydetail_tmp = ActivityDetail.new activitydetail_tmp.deserialize(i) @PageData << activitydetail_tmp end end @RequestId = params['RequestId'] end |