Class: Lago::Api::Resources::WalletTransaction
- Inherits:
-
Base
- Object
- Base
- Lago::Api::Resources::WalletTransaction
show all
- Defined in:
- lib/lago/api/resources/wallet_transaction.rb
Instance Attribute Summary
Attributes inherited from Base
#client
Instance Method Summary
collapse
Methods inherited from Base
#create, #destroy, #get, #get_all, #initialize, #update
Instance Method Details
#api_resource ⇒ Object
7
8
9
|
# File 'lib/lago/api/resources/wallet_transaction.rb', line 7
def api_resource
'wallet_transactions'
end
|
#root_name ⇒ Object
11
12
13
|
# File 'lib/lago/api/resources/wallet_transaction.rb', line 11
def root_name
'wallet_transactions'
end
|
#whitelist_params(params) ⇒ Object
15
16
17
18
19
20
21
22
23
|
# File 'lib/lago/api/resources/wallet_transaction.rb', line 15
def whitelist_params(params)
{
'wallet_transaction' => {
wallet_id: params[:wallet_id],
paid_credits: params[:paid_credits],
granted_credits: params[:granted_credits]
}.compact
}
end
|