Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 697 Bytes

SendAppMessageRequest.md

File metadata and controls

20 lines (14 loc) · 697 Bytes

Daily::SendAppMessageRequest

Properties

Name Type Description Notes
data Object A javascript object that can be serialized into JSON. Data sent must be within the 4kb size limit. [optional]
recipient String Determines who will recieve the message. It can be either a participant session_id, or ``. The `` value is the default, and means that the message is a "broadcast" message intended for all participants. [optional][default to '*']

Example

require 'daily-ruby'

instance = Daily::SendAppMessageRequest.new(
  data: null,
  recipient: null
)