Class: TencentCloud::Organization::V20181225::OrgMember
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20181225::OrgMember
- Defined in:
- lib/v20181225/models.rb
Overview
企业组织成员
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(uin = nil, name = nil, remark = nil, jointime = nil) ⇒ OrgMember
constructor
A new instance of OrgMember.
Constructor Details
#initialize(uin = nil, name = nil, remark = nil, jointime = nil) ⇒ OrgMember
Returns a new instance of OrgMember.
746 747 748 749 750 751 |
# File 'lib/v20181225/models.rb', line 746 def initialize(uin=nil, name=nil, remark=nil, jointime=nil) @Uin = uin @Name = name @Remark = remark @JoinTime = jointime end |
Instance Attribute Details
#JoinTime ⇒ Object
744 745 746 |
# File 'lib/v20181225/models.rb', line 744 def JoinTime @JoinTime end |
#Name ⇒ Object
744 745 746 |
# File 'lib/v20181225/models.rb', line 744 def Name @Name end |
#Remark ⇒ Object
744 745 746 |
# File 'lib/v20181225/models.rb', line 744 def Remark @Remark end |
#Uin ⇒ Object
744 745 746 |
# File 'lib/v20181225/models.rb', line 744 def Uin @Uin end |
Instance Method Details
#deserialize(params) ⇒ Object
753 754 755 756 757 758 |
# File 'lib/v20181225/models.rb', line 753 def deserialize(params) @Uin = params['Uin'] @Name = params['Name'] @Remark = params['Remark'] @JoinTime = params['JoinTime'] end |