module BWAPI::Client::Brandwatch::CommandCenter::SceneTypes

SceneTypes module for brandwatch/commandcenter/scenetypes endpoints

Public Instance Methods

brandwatch_all_scene_types() click to toggle source

Fetch all supported parent scene types

TODO: Add parameters documentation

# 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) click to toggle source

Fetch a scene type

TODO: Add parameters documentation

# 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) click to toggle source

Fetch all sub scene types for a scene type

TODO: Add parameters documentation

# 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