Class: TencentCloud::Lcic::V20220817::AddGroupMemberRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20220817/models.rb

Overview

AddGroupMember请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#GroupIdObject

Parameters:

  • GroupId:

    群组ID

  • SdkAppId:

    低代码平台应用ID

  • MemberIds:

    成员列表,最大值200



29
30
31
# File 'lib/v20220817/models.rb', line 29

def GroupId
  @GroupId
end

#MemberIdsObject

Parameters:

  • GroupId:

    群组ID

  • SdkAppId:

    低代码平台应用ID

  • MemberIds:

    成员列表,最大值200



29
30
31
# File 'lib/v20220817/models.rb', line 29

def MemberIds
  @MemberIds
end

#SdkAppIdObject

Parameters:

  • GroupId:

    群组ID

  • SdkAppId:

    低代码平台应用ID

  • MemberIds:

    成员列表,最大值200



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