Class: TencentCloud::Wav::V20210129::QueryExternalContactListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wav::V20210129::QueryExternalContactListResponse
- Defined in:
- lib/v20210129/models.rb
Overview
QueryExternalContactList返回参数结构体
Instance Attribute Summary collapse
-
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(pagedata = nil, nextcursor = nil, requestid = nil) ⇒ QueryExternalContactListResponse
constructor
A new instance of QueryExternalContactListResponse.
Constructor Details
#initialize(pagedata = nil, nextcursor = nil, requestid = nil) ⇒ QueryExternalContactListResponse
Returns a new instance of QueryExternalContactListResponse.
2702 2703 2704 2705 2706 |
# File 'lib/v20210129/models.rb', line 2702 def initialize(pagedata=nil, nextcursor=nil, requestid=nil) @PageData = pagedata @NextCursor = nextcursor @RequestId = requestid end |
Instance Attribute Details
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2700 2701 2702 |
# File 'lib/v20210129/models.rb', line 2700 def NextCursor @NextCursor end |
#PageData ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2700 2701 2702 |
# File 'lib/v20210129/models.rb', line 2700 def PageData @PageData end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2700 2701 2702 |
# File 'lib/v20210129/models.rb', line 2700 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 |
# File 'lib/v20210129/models.rb', line 2708 def deserialize(params) unless params['PageData'].nil? @PageData = [] params['PageData'].each do |i| externalcontactsimpleinfo_tmp = ExternalContactSimpleInfo.new externalcontactsimpleinfo_tmp.deserialize(i) @PageData << externalcontactsimpleinfo_tmp end end @NextCursor = params['NextCursor'] @RequestId = params['RequestId'] end |