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/api_model_base.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.2
Generated by: openapi-generator.tech Generator version: 7.22.0
Defined Under Namespace
Classes: Announcement, ApiClient, ApiError, ApiModelBase, Configuration, ResponseBody, V1Api
Constant Summary collapse
- VERSION =
'1.0.2'
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.
35 36 37 38 39 40 41 |
# File 'lib/kendama.rb', line 35 def configure if block_given? yield(Configuration.default) else Configuration.default end end |