Module: Kendama
- Defined in:
- lib/kendama/version.rb,
lib/kendama.rb,
lib/kendama/api_error.rb,
lib/kendama/api/v1_api.rb,
lib/kendama/api_client.rb,
lib/kendama/configuration.rb,
lib/kendama/models/announcement.rb,
lib/kendama/models/response_body.rb
Overview
#国税庁API
#国税庁が提供するインボイス制度適格請求書発行事業者公表システムWeb-APIを使用するためのクライアントAPI(www.invoice-kohyo.nta.go.jp/web-api/index.html)
The version of the OpenAPI document: 1.0.1
Generated by: openapi-generator.tech OpenAPI Generator version: 7.0.0
Defined Under Namespace
Classes: Announcement, ApiClient, ApiError, Configuration, ResponseBody, V1Api
Constant Summary collapse
- VERSION =
'1.0.1'
Class Method Summary collapse
-
.configure ⇒ Object
Customize default settings for the SDK using block.
Class Method Details
.configure ⇒ Object
Customize default settings for the SDK using block.
Kendama.configure do |config|
config.username = "xxx"
config.password = "xxx"
end
If no block given, return the default Configuration object.
34 35 36 37 38 39 40 |
# File 'lib/kendama.rb', line 34 def configure if block_given? yield(Configuration.default) else Configuration.default end end |