Class: Freee::Walletable

Inherits:
Base
  • Object
show all
Defined in:
lib/freee/walletable.rb

Instance Attribute Summary

Attributes inherited from Base

#client

Class Method Summary collapse

Methods inherited from Base

config, #get, #initialize, #post, set_env, #token, #token=

Constructor Details

This class inherits a constructor from Freee::Base

Class Method Details

.create(json) ⇒ Object



3
4
5
6
# File 'lib/freee/walletable.rb', line 3

def self.create(json)
  params = Freee.encode_json(json)
  Freee.client.post('/api/1/walletables', :walletable, params)
end

.list(company_id) ⇒ Object



9
10
11
12
13
14
# File 'lib/freee/walletable.rb', line 9

def self.list(company_id)
  Freee.client.get(
    "/api/1/walletables?company_id=#{company_id.to_i}",
    :walletable
  )
end