Class: TencentCloud::Lcic::V20220817::AddGroupMemberRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Lcic::V20220817::AddGroupMemberRequest
- Defined in:
- lib/v20220817/models.rb
Overview
AddGroupMember请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(groupid = nil, sdkappid = nil, memberids = nil) ⇒ AddGroupMemberRequest
constructor
A new instance of AddGroupMemberRequest.
Constructor Details
#initialize(groupid = nil, sdkappid = nil, memberids = nil) ⇒ AddGroupMemberRequest
Returns a new instance of AddGroupMemberRequest.
31 32 33 34 35 |
# File 'lib/v20220817/models.rb', line 31 def initialize(groupid=nil, sdkappid=nil, memberids=nil) @GroupId = groupid @SdkAppId = sdkappid @MemberIds = memberids end |
Instance Attribute Details
#GroupId ⇒ Object
29 30 31 |
# File 'lib/v20220817/models.rb', line 29 def GroupId @GroupId end |
#MemberIds ⇒ Object
29 30 31 |
# File 'lib/v20220817/models.rb', line 29 def MemberIds @MemberIds end |
#SdkAppId ⇒ Object
29 30 31 |
# File 'lib/v20220817/models.rb', line 29 def SdkAppId @SdkAppId end |
Instance Method Details
#deserialize(params) ⇒ Object
37 38 39 40 41 |
# File 'lib/v20220817/models.rb', line 37 def deserialize(params) @GroupId = params['GroupId'] @SdkAppId = params['SdkAppId'] @MemberIds = params['MemberIds'] end |