Module: PrimaryConnectClient
- Defined in:
- lib/primary_connect_client/api_error.rb,
lib/primary_connect_client.rb,
lib/primary_connect_client/version.rb,
lib/primary_connect_client/api_client.rb,
lib/primary_connect_client/configuration.rb,
lib/primary_connect_client/api/default_api.rb
Overview
#Primary Connect API V1
#Client Library to interface with Primary Connect
The version of the OpenAPI document: v1
Generated by: openapi-generator.tech OpenAPI Generator version: 5.3.0-SNAPSHOT
Defined Under Namespace
Classes: ApiClient, ApiError, Configuration, DefaultApi
Constant Summary collapse
- VERSION =
'0.3.0'
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.
PrimaryConnectClient.configure do |config|
config.username = "xxx"
config.password = "xxx"
end
If no block given, return the default Configuration object.
30 31 32 33 34 35 36 |
# File 'lib/primary_connect_client.rb', line 30 def configure if block_given? yield(Configuration.default) else Configuration.default end end |