Class: Lago::Api::Resources::Payment

Inherits:
Base
  • Object
show all
Defined in:
lib/lago/api/resources/payment.rb

Instance Attribute Summary

Attributes inherited from Base

#client

Instance Method Summary collapse

Methods inherited from Base

#create, #destroy, #get, #get_all, #initialize, #update

Constructor Details

This class inherits a constructor from Lago::Api::Resources::Base

Instance Method Details

#api_resourceObject



9
10
11
# File 'lib/lago/api/resources/payment.rb', line 9

def api_resource
  'payments'
end

#root_nameObject



13
14
15
# File 'lib/lago/api/resources/payment.rb', line 13

def root_name
  'payment'
end

#whitelist_params(params) ⇒ Object



17
18
19
20
21
22
23
24
25
26
# File 'lib/lago/api/resources/payment.rb', line 17

def whitelist_params(params)
  result_hash = {
    invoice_id: params[:invoice_id],
    amount_cents: params[:amount_cents],
    reference: params[:reference],
    paid_at: params[:paid_at]
  }.compact

  { root_name => result_hash }
end