Class: FrilansFinansAPI::NilClient
- Inherits:
-
Object
- Object
- FrilansFinansAPI::NilClient
show all
- Defined in:
- lib/frilans_finans_api/client/nil_client.rb
Defined Under Namespace
Classes: Request, Response
Constant Summary
collapse
- HTTP_STATUS =
200
- NIL_URI =
URI('http://example.com')
Instance Method Summary
collapse
-
#currencies(**_args) ⇒ Object
(also: #professions, #salaries, #taxes, #users, #invoice, #user, #profession, #create_user, #create_company, #create_employment_certificate, #create_invoice, #update_invoice, #update_user)
Instance Method Details
#currencies(**_args) ⇒ Object
Also known as:
professions, salaries, taxes, users, invoice, user, profession, create_user, create_company, create_employment_certificate, create_invoice, update_invoice, update_user
11
12
13
14
15
|
# File 'lib/frilans_finans_api/client/nil_client.rb', line 11
def currencies(**_args)
body = '{}'
request = Request.new(NIL_URI)
Response.new(HTTP_STATUS, body, request)
end
|