lib/plivo/resources/brand.rb in plivo-4.32.0 vs lib/plivo/resources/brand.rb in plivo-4.33.0
- old
+ new
@@ -83,8 +83,16 @@
def get_usecases(brand_id)
valid_param?(:brand_id, brand_id, [String, Symbol], true)
identifier = brand_id + '/usecases'
perform_action_with_identifier(identifier, 'GET', nil)
end
+
+ ##
+ # Delete Brand
+ # @param [String] brand_id
+ def delete(brand_id)
+ valid_param?(:brand_id, brand_id, [String, Symbol], true)
+ perform_delete(brand_id)
+ end
end
end
end
\ No newline at end of file