Class: TencentCloud::Wav::V20210129::FollowUser
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wav::V20210129::FollowUser
- Defined in:
- lib/v20210129/models.rb
Overview
添加了此外部联系人的企业成员信息
Instance Attribute Summary collapse
-
#AddWay ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#CreateTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Description ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#OperUserId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Remark ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Tags ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#UserId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(userid = nil, remark = nil, description = nil, createtime = nil, addway = nil, operuserid = nil, tags = nil) ⇒ FollowUser
constructor
A new instance of FollowUser.
Constructor Details
#initialize(userid = nil, remark = nil, description = nil, createtime = nil, addway = nil, operuserid = nil, tags = nil) ⇒ FollowUser
Returns a new instance of FollowUser.
1620 1621 1622 1623 1624 1625 1626 1627 1628 |
# File 'lib/v20210129/models.rb', line 1620 def initialize(userid=nil, remark=nil, description=nil, createtime=nil, addway=nil, operuserid=nil, =nil) @UserId = userid @Remark = remark @Description = description @CreateTime = createtime @AddWay = addway @OperUserId = operuserid @Tags = end |
Instance Attribute Details
#AddWay ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1618 1619 1620 |
# File 'lib/v20210129/models.rb', line 1618 def AddWay @AddWay end |
#CreateTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1618 1619 1620 |
# File 'lib/v20210129/models.rb', line 1618 def CreateTime @CreateTime end |
#Description ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1618 1619 1620 |
# File 'lib/v20210129/models.rb', line 1618 def Description @Description end |
#OperUserId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1618 1619 1620 |
# File 'lib/v20210129/models.rb', line 1618 def OperUserId @OperUserId end |
#Remark ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1618 1619 1620 |
# File 'lib/v20210129/models.rb', line 1618 def Remark @Remark end |
#Tags ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1618 1619 1620 |
# File 'lib/v20210129/models.rb', line 1618 def Tags @Tags end |
#UserId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
1618 1619 1620 |
# File 'lib/v20210129/models.rb', line 1618 def UserId @UserId end |
Instance Method Details
#deserialize(params) ⇒ Object
1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 |
# File 'lib/v20210129/models.rb', line 1630 def deserialize(params) @UserId = params['UserId'] @Remark = params['Remark'] @Description = params['Description'] @CreateTime = params['CreateTime'] @AddWay = params['AddWay'] @OperUserId = params['OperUserId'] unless params['Tags'].nil? @Tags = [] params['Tags'].each do |i| externalcontacttag_tmp = ExternalContactTag.new externalcontacttag_tmp.deserialize(i) @Tags << externalcontacttag_tmp end end end |