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



7
8
9
# File 'lib/lago/api/resources/payment.rb', line 7

def api_resource
  'payments'
end

#root_nameObject



11
12
13
# File 'lib/lago/api/resources/payment.rb', line 11

def root_name
  'payment'
end

#whitelist_params(params) ⇒ Object



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

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