class IronBank::Actions::Delete

Delete one or more objects of the same type www.zuora.com/developer/api-reference/#operation/Action_POSTdelete

Private Instance Methods

params() click to toggle source
# File lib/iron_bank/actions/delete.rb, line 11
def params
  {
    ids:  args.fetch(:ids),
    type: type
  }
end
type() click to toggle source
# File lib/iron_bank/actions/delete.rb, line 18
def type
  IronBank::Utils.camelize(args.fetch(:type), type: :upper)
end