Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 782 Bytes

SetSessionDataRequest.md

File metadata and controls

22 lines (16 loc) · 782 Bytes

Daily::SetSessionDataRequest

Properties

Name Type Description Notes
data Object A javascript object that can be serialized into JSON. Defaults to `{}`. [optional]
merge_strategy String `replace` to replace the existing meeting session data object or `shallow-merge` to merge with it. [optional][default to 'replace']
keys_to_delete Array<String> Optional list of keys to delete from the existing meeting session data object when using `shallow-merge`. [optional]

Example

require 'daily-ruby'

instance = Daily::SetSessionDataRequest.new(
  data: null,
  merge_strategy: null,
  keys_to_delete: null
)