Class: TencentCloud::Wav::V20210129::QueryExternalContactDetailResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wav::V20210129::QueryExternalContactDetailResponse
- Defined in:
- lib/v20210129/models.rb
Overview
QueryExternalContactDetail返回参数结构体
Instance Attribute Summary collapse
-
#Customer ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#FollowUser ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(nextcursor = nil, customer = nil, followuser = nil, requestid = nil) ⇒ QueryExternalContactDetailResponse
constructor
A new instance of QueryExternalContactDetailResponse.
Constructor Details
#initialize(nextcursor = nil, customer = nil, followuser = nil, requestid = nil) ⇒ QueryExternalContactDetailResponse
Returns a new instance of QueryExternalContactDetailResponse.
2644 2645 2646 2647 2648 2649 |
# File 'lib/v20210129/models.rb', line 2644 def initialize(nextcursor=nil, customer=nil, followuser=nil, requestid=nil) @NextCursor = nextcursor @Customer = customer @FollowUser = followuser @RequestId = requestid end |
Instance Attribute Details
#Customer ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2642 2643 2644 |
# File 'lib/v20210129/models.rb', line 2642 def Customer @Customer end |
#FollowUser ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2642 2643 2644 |
# File 'lib/v20210129/models.rb', line 2642 def FollowUser @FollowUser end |
#NextCursor ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2642 2643 2644 |
# File 'lib/v20210129/models.rb', line 2642 def NextCursor @NextCursor end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2642 2643 2644 |
# File 'lib/v20210129/models.rb', line 2642 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 |
# File 'lib/v20210129/models.rb', line 2651 def deserialize(params) @NextCursor = params['NextCursor'] unless params['Customer'].nil? @Customer = ExternalContact.new @Customer.deserialize(params['Customer']) end unless params['FollowUser'].nil? @FollowUser = [] params['FollowUser'].each do |i| followuser_tmp = FollowUser.new followuser_tmp.deserialize(i) @FollowUser << followuser_tmp end end @RequestId = params['RequestId'] end |