class IronBank::Actions::Create
Create
one or more objects of a specific type www.zuora.com/developer/api-reference/#operation/Action_POSTcreate
Private Instance Methods
objects()
click to toggle source
# File lib/iron_bank/actions/create.rb, line 18 def objects IronBank::Object.new(args.fetch(:objects)).deep_camelize(type: :upper) end
params()
click to toggle source
# File lib/iron_bank/actions/create.rb, line 11 def params { objects: objects, type: type } end
type()
click to toggle source
# File lib/iron_bank/actions/create.rb, line 22 def type IronBank::Utils.camelize(args.fetch(:type), type: :upper) end