Module: BWAPI::Client::Brandwatch::CommandCenter::SceneTypes

Included in:
BWAPI::Client::Brandwatch::CommandCenter
Defined in:
lib/bwapi/client/brandwatch/command_center/scene_types.rb

Overview

SceneTypes module for brandwatch/commandcenter/scenetypes endpoints

Instance Method Summary collapse

Instance Method Details

#brandwatch_all_scene_typesObject

Fetch all supported parent scene types

TODO: Add parameters documentation



10
11
12
# File 'lib/bwapi/client/brandwatch/command_center/scene_types.rb', line 10

def brandwatch_all_scene_types
  get 'brandwatch/commandcenter/scenetypes'
end

#brandwatch_scene_type(scene_type_id) ⇒ Object

Fetch a scene type

TODO: Add parameters documentation



17
18
19
# File 'lib/bwapi/client/brandwatch/command_center/scene_types.rb', line 17

def brandwatch_scene_type(scene_type_id)
  get "brandwatch/commandcenter/scenetypes/#{scene_type_id}"
end

#brandwatch_scene_type_with_sub_scenes(scene_type_id) ⇒ Object

Fetch all sub scene types for a scene type

TODO: Add parameters documentation



24
25
26
# File 'lib/bwapi/client/brandwatch/command_center/scene_types.rb', line 24

def brandwatch_scene_type_with_sub_scenes(scene_type_id)
  get "brandwatch/commandcenter/scenetypes/#{scene_type_id}/subscenes"
end