Module: CnsOpenapiRubyClient
- Defined in:
- lib/cns_openapi_ruby_client/version.rb,
lib/cns_openapi_ruby_client.rb,
lib/cns_openapi_ruby_client/api_error.rb,
lib/cns_openapi_ruby_client/api_client.rb,
lib/cns_openapi_ruby_client/configuration.rb,
lib/cns_openapi_ruby_client/models/response.rb,
lib/cns_openapi_ruby_client/models/corporation.rb,
lib/cns_openapi_ruby_client/api/corporations_api.rb,
lib/cns_openapi_ruby_client/models/corporate_type.rb,
lib/cns_openapi_ruby_client/models/response_wrapper.rb,
lib/cns_openapi_ruby_client/models/correct_code_type.rb,
lib/cns_openapi_ruby_client/models/process_code_type.rb
Overview
#Corporate number system API v4
#Corporate number system API v4
The version of the OpenAPI document: 1.0.6
Generated by: openapi-generator.tech OpenAPI Generator version: 5.0.1
Defined Under Namespace
Classes: ApiClient, ApiError, Configuration, CorporateType, Corporation, CorporationsApi, CorrectCodeType, ProcessCodeType, Response, ResponseWrapper
Constant Summary collapse
- VERSION =
'1.0.6'
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.
CnsOpenapiRubyClient.configure do |config|
config.username = "xxx"
config.password = "xxx"
end
If no block given, return the default Configuration object.
38 39 40 41 42 43 44 |
# File 'lib/cns_openapi_ruby_client.rb', line 38 def configure if block_given? yield(Configuration.default) else Configuration.default end end |