Class: TencentCloud::Lcic::V20220817::SendRoomNotificationMessageRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Lcic::V20220817::SendRoomNotificationMessageRequest
- Defined in:
- lib/v20220817/models.rb
Overview
SendRoomNotificationMessage请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(sdkappid = nil, roomid = nil, msgcontent = nil) ⇒ SendRoomNotificationMessageRequest
constructor
A new instance of SendRoomNotificationMessageRequest.
Constructor Details
#initialize(sdkappid = nil, roomid = nil, msgcontent = nil) ⇒ SendRoomNotificationMessageRequest
Returns a new instance of SendRoomNotificationMessageRequest.
4825 4826 4827 4828 4829 |
# File 'lib/v20220817/models.rb', line 4825 def initialize(sdkappid=nil, roomid=nil, msgcontent=nil) @SdkAppId = sdkappid @RoomId = roomid @MsgContent = msgcontent end |
Instance Attribute Details
#MsgContent ⇒ Object
4823 4824 4825 |
# File 'lib/v20220817/models.rb', line 4823 def MsgContent @MsgContent end |
#RoomId ⇒ Object
4823 4824 4825 |
# File 'lib/v20220817/models.rb', line 4823 def RoomId @RoomId end |
#SdkAppId ⇒ Object
4823 4824 4825 |
# File 'lib/v20220817/models.rb', line 4823 def SdkAppId @SdkAppId end |
Instance Method Details
#deserialize(params) ⇒ Object
4831 4832 4833 4834 4835 |
# File 'lib/v20220817/models.rb', line 4831 def deserialize(params) @SdkAppId = params['SdkAppId'] @RoomId = params['RoomId'] @MsgContent = params['MsgContent'] end |