# frozen_string_literal: true module IronBank module Actions # Delete one or more objects of the same type # https://www.zuora.com/developer/api-reference/#operation/Action_POSTdelete # class Delete < Action private def params { ids: args.fetch(:ids), type: type } end def type IronBank::Utils.camelize(args.fetch(:type), type: :upper) end end end end