class Orders::Order::Refund

Attributes

amount[R]
created[R]
id[R]
ref[R]
status[R]

Public Class Methods

new(options = {}) click to toggle source
# File lib/Orders.rb, line 35
def initialize(options = {})
  @id = get_arg(options, 'refund_id')
  @ref = get_arg(options, 'ref')
  @amount = get_arg(options, 'amount')
  @created = get_arg(options, 'created')
  @status = get_arg(options, 'status')
end