Class: TencentCloud::Lcic::V20220817::CreateGroupWithMembersRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Lcic::V20220817::CreateGroupWithMembersRequest
- Defined in:
- lib/v20220817/models.rb
Overview
CreateGroupWithMembers请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(groupname = nil, sdkappid = nil, teacherid = nil, memberids = nil) ⇒ CreateGroupWithMembersRequest
constructor
A new instance of CreateGroupWithMembersRequest.
Constructor Details
#initialize(groupname = nil, sdkappid = nil, teacherid = nil, memberids = nil) ⇒ CreateGroupWithMembersRequest
Returns a new instance of CreateGroupWithMembersRequest.
768 769 770 771 772 773 |
# File 'lib/v20220817/models.rb', line 768 def initialize(groupname=nil, sdkappid=nil, teacherid=nil, memberids=nil) @GroupName = groupname @SdkAppId = sdkappid @TeacherId = teacherid @MemberIds = memberids end |
Instance Attribute Details
#GroupName ⇒ Object
766 767 768 |
# File 'lib/v20220817/models.rb', line 766 def GroupName @GroupName end |
#MemberIds ⇒ Object
766 767 768 |
# File 'lib/v20220817/models.rb', line 766 def MemberIds @MemberIds end |
#SdkAppId ⇒ Object
766 767 768 |
# File 'lib/v20220817/models.rb', line 766 def SdkAppId @SdkAppId end |
#TeacherId ⇒ Object
766 767 768 |
# File 'lib/v20220817/models.rb', line 766 def TeacherId @TeacherId end |
Instance Method Details
#deserialize(params) ⇒ Object
775 776 777 778 779 780 |
# File 'lib/v20220817/models.rb', line 775 def deserialize(params) @GroupName = params['GroupName'] @SdkAppId = params['SdkAppId'] @TeacherId = params['TeacherId'] @MemberIds = params['MemberIds'] end |