Class: TencentCloud::Wav::V20210129::QueryFollowListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wav::V20210129::QueryFollowListResponse
- Defined in:
- lib/v20210129/models.rb
Overview
QueryFollowList返回参数结构体
Instance Attribute Summary collapse
-
#HasMore ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(nextcursor = nil, pagedata = nil, hasmore = nil, requestid = nil) ⇒ QueryFollowListResponse
constructor
A new instance of QueryFollowListResponse.
Constructor Details
#initialize(nextcursor = nil, pagedata = nil, hasmore = nil, requestid = nil) ⇒ QueryFollowListResponse
Returns a new instance of QueryFollowListResponse.
2871 2872 2873 2874 2875 2876 |
# File 'lib/v20210129/models.rb', line 2871 def initialize(nextcursor=nil, pagedata=nil, hasmore=nil, requestid=nil) @NextCursor = nextcursor @PageData = pagedata @HasMore = hasmore @RequestId = requestid end |
Instance Attribute Details
#HasMore ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2869 2870 2871 |
# File 'lib/v20210129/models.rb', line 2869 def HasMore @HasMore end |
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2869 2870 2871 |
# File 'lib/v20210129/models.rb', line 2869 def NextCursor @NextCursor end |
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2869 2870 2871 |
# File 'lib/v20210129/models.rb', line 2869 def PageData @PageData end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2869 2870 2871 |
# File 'lib/v20210129/models.rb', line 2869 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 |
# File 'lib/v20210129/models.rb', line 2878 def deserialize(params) @NextCursor = params['NextCursor'] unless params['PageData'].nil? @PageData = [] params['PageData'].each do |i| followinfo_tmp = FollowInfo.new followinfo_tmp.deserialize(i) @PageData << followinfo_tmp end end @HasMore = params['HasMore'] @RequestId = params['RequestId'] end |