Module: StackOneHrisClient
- Defined in:
- lib/stackone_hris_client/version.rb,
lib/stackone_hris_client.rb,
lib/stackone_hris_client/api_error.rb,
lib/stackone_hris_client/api_client.rb,
lib/stackone_hris_client/configuration.rb,
lib/stackone_hris_client/models/employee.rb,
lib/stackone_hris_client/api/employees_api.rb,
lib/stackone_hris_client/models/employee_result.rb,
lib/stackone_hris_client/models/employees_paginated.rb
Overview
#StackOne Unified API
#The documentation for the StackOne Unified API
The version of the OpenAPI document: 1.0
Generated by: openapi-generator.tech OpenAPI Generator version: 6.4.0
Defined Under Namespace
Classes: ApiClient, ApiError, Configuration, Employee, EmployeeResult, EmployeesApi, EmployeesPaginated
Constant Summary collapse
- VERSION =
'1.0.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.
StackOneHrisClient.configure do |config|
config.api_key_token = "xxx"
end
If no block given, return the default Configuration object.
34 35 36 37 38 39 40 |
# File 'lib/stackone_hris_client.rb', line 34 def configure if block_given? yield(Configuration.default) else Configuration.default end end |