Class: BrazeRuby::REST::DeleteCatalog

Inherits:
Base
  • Object
show all
Defined in:
lib/braze_ruby/rest/delete_catalog.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_key, braze_url, options, catalog_name) ⇒ DeleteCatalog

Returns a new instance of DeleteCatalog.



8
9
10
11
# File 'lib/braze_ruby/rest/delete_catalog.rb', line 8

def initialize(api_key, braze_url, options, catalog_name)
  @catalog_name = catalog_name
  super(api_key, braze_url, options)
end

Instance Attribute Details

#paramsObject (readonly)

Returns the value of attribute params.



6
7
8
# File 'lib/braze_ruby/rest/delete_catalog.rb', line 6

def params
  @params
end

Instance Method Details

#performObject



13
14
15
# File 'lib/braze_ruby/rest/delete_catalog.rb', line 13

def perform
  http.delete("/catalogs/#{@catalog_name}")
end