Sha256: af2c8a5f868476b18caa33f3e96e4104684fa9eeb6bc9e76445ac242164fab6e
Contents?: true
Size: 578 Bytes
Versions: 41
Compression:
Stored size: 578 Bytes
Contents
# frozen_string_literal: true module IronBank module Actions # Update the information in one or more objects of the same type # https://www.zuora.com/developer/api-reference/#operation/Action_POSTupdate # class Update < Action private def params { objects: objects, type: type } end def objects IronBank::Object.new(args.fetch(:objects)).deep_camelize(type: :upper) end def type IronBank::Utils.camelize(args.fetch(:type), type: :upper) end end end end
Version data entries
41 entries across 41 versions & 1 rubygems