stackone_hris_client 1.1.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +40 -24
- data/docs/Account.md +2 -2
- data/docs/AccountsApi.md +82 -11
- data/docs/CompaniesApi.md +175 -0
- data/docs/CompaniesPaginated.md +22 -0
- data/docs/Company.md +22 -0
- data/docs/CompanyResult.md +20 -0
- data/docs/ConnectSession.md +2 -2
- data/docs/ConnectSessionAuthenticate.md +2 -2
- data/docs/ConnectSessionCreate.md +2 -2
- data/docs/ConnectSessionToken.md +2 -2
- data/docs/ConnectSessionsApi.md +15 -13
- data/docs/Employee.md +44 -12
- data/docs/EmployeeResult.md +2 -2
- data/docs/EmployeesApi.md +13 -11
- data/docs/EmployeesPaginated.md +2 -2
- data/docs/Employment.md +34 -0
- data/docs/EmploymentResult.md +20 -0
- data/docs/EmploymentsApi.md +175 -0
- data/docs/EmploymentsPaginated.md +22 -0
- data/docs/Location.md +38 -0
- data/docs/LocationResult.md +20 -0
- data/docs/LocationsApi.md +175 -0
- data/docs/LocationsPaginated.md +22 -0
- data/gem-config.yml +4 -4
- data/lib/stackone_hris_client/api/accounts_api.rb +65 -4
- data/lib/stackone_hris_client/api/companies_api.rb +188 -0
- data/lib/stackone_hris_client/api/connect_sessions_api.rb +4 -4
- data/lib/stackone_hris_client/api/employees_api.rb +4 -4
- data/lib/stackone_hris_client/api/employments_api.rb +188 -0
- data/lib/stackone_hris_client/api/locations_api.rb +188 -0
- data/lib/stackone_hris_client/api_client.rb +5 -5
- data/lib/stackone_hris_client/api_error.rb +4 -4
- data/lib/stackone_hris_client/configuration.rb +4 -4
- data/lib/stackone_hris_client/models/account.rb +7 -7
- data/lib/stackone_hris_client/models/companies_paginated.rb +247 -0
- data/lib/stackone_hris_client/models/company.rb +235 -0
- data/lib/stackone_hris_client/models/company_result.rb +231 -0
- data/lib/stackone_hris_client/models/connect_session.rb +7 -7
- data/lib/stackone_hris_client/models/connect_session_authenticate.rb +7 -7
- data/lib/stackone_hris_client/models/connect_session_create.rb +7 -7
- data/lib/stackone_hris_client/models/connect_session_token.rb +7 -7
- data/lib/stackone_hris_client/models/employee.rb +181 -60
- data/lib/stackone_hris_client/models/employee_result.rb +7 -7
- data/lib/stackone_hris_client/models/employees_paginated.rb +7 -7
- data/lib/stackone_hris_client/models/employment.rb +294 -0
- data/lib/stackone_hris_client/models/employment_result.rb +231 -0
- data/lib/stackone_hris_client/models/employments_paginated.rb +247 -0
- data/lib/stackone_hris_client/models/location.rb +312 -0
- data/lib/stackone_hris_client/models/location_result.rb +231 -0
- data/lib/stackone_hris_client/models/locations_paginated.rb +247 -0
- data/lib/stackone_hris_client/version.rb +5 -5
- data/lib/stackone_hris_client.rb +17 -5
- data/spec/api/accounts_api_spec.rb +3 -3
- data/spec/api/companies_api_spec.rb +70 -0
- data/spec/api/connect_sessions_api_spec.rb +3 -3
- data/spec/api/employees_api_spec.rb +3 -3
- data/spec/api/employments_api_spec.rb +70 -0
- data/spec/api/locations_api_spec.rb +70 -0
- data/spec/api_client_spec.rb +32 -32
- data/spec/configuration_spec.rb +6 -6
- data/spec/models/account_spec.rb +4 -4
- data/spec/models/companies_paginated_spec.rb +46 -0
- data/spec/models/company_result_spec.rb +40 -0
- data/spec/models/company_spec.rb +46 -0
- data/spec/models/connect_session_authenticate_spec.rb +4 -4
- data/spec/models/connect_session_create_spec.rb +4 -4
- data/spec/models/connect_session_spec.rb +4 -4
- data/spec/models/connect_session_token_spec.rb +4 -4
- data/spec/models/employee_result_spec.rb +4 -4
- data/spec/models/employee_spec.rb +4 -4
- data/spec/models/employees_paginated_spec.rb +4 -4
- data/spec/models/employment_result_spec.rb +40 -0
- data/spec/models/employment_spec.rb +82 -0
- data/spec/models/employments_paginated_spec.rb +46 -0
- data/spec/models/location_result_spec.rb +40 -0
- data/spec/models/location_spec.rb +94 -0
- data/spec/models/locations_paginated_spec.rb +46 -0
- data/spec/spec_helper.rb +3 -3
- data/stackone_hris_client.gemspec +5 -5
- metadata +51 -3
@@ -0,0 +1,188 @@
|
|
1
|
+
=begin
|
2
|
+
#StackOne Unified API - HRIS
|
3
|
+
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 6.4.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'cgi'
|
14
|
+
|
15
|
+
module StackOneHRIS
|
16
|
+
class EmploymentsApi
|
17
|
+
attr_accessor :api_client
|
18
|
+
|
19
|
+
def initialize(api_client = ApiClient.default)
|
20
|
+
@api_client = api_client
|
21
|
+
end
|
22
|
+
#
|
23
|
+
# @param id [String]
|
24
|
+
# @param x_account_id [String] The account identifier
|
25
|
+
# @param [Hash] opts the optional parameters
|
26
|
+
# @option opts [String] :page The page number of the results to fetch
|
27
|
+
# @option opts [String] :page_size The number of results per page (default to '25')
|
28
|
+
# @option opts [Boolean] :raw Indicates that the raw request result is returned (default to false)
|
29
|
+
# @option opts [Array<String>] :fields The list of fields to return in the response (if empty, all fields are returned)
|
30
|
+
# @option opts [Array<String>] :expand The list of fields that will be expanded in the response
|
31
|
+
# @option opts [String] :sync_token The sync token to select the only updated results
|
32
|
+
# @return [EmploymentResult]
|
33
|
+
def employments_get(id, x_account_id, opts = {})
|
34
|
+
data, _status_code, _headers = employments_get_with_http_info(id, x_account_id, opts)
|
35
|
+
data
|
36
|
+
end
|
37
|
+
|
38
|
+
#
|
39
|
+
# @param id [String]
|
40
|
+
# @param x_account_id [String] The account identifier
|
41
|
+
# @param [Hash] opts the optional parameters
|
42
|
+
# @option opts [String] :page The page number of the results to fetch
|
43
|
+
# @option opts [String] :page_size The number of results per page (default to '25')
|
44
|
+
# @option opts [Boolean] :raw Indicates that the raw request result is returned (default to false)
|
45
|
+
# @option opts [Array<String>] :fields The list of fields to return in the response (if empty, all fields are returned)
|
46
|
+
# @option opts [Array<String>] :expand The list of fields that will be expanded in the response
|
47
|
+
# @option opts [String] :sync_token The sync token to select the only updated results
|
48
|
+
# @return [Array<(EmploymentResult, Integer, Hash)>] EmploymentResult data, response status code and response headers
|
49
|
+
def employments_get_with_http_info(id, x_account_id, opts = {})
|
50
|
+
if @api_client.config.debugging
|
51
|
+
@api_client.config.logger.debug 'Calling API: EmploymentsApi.employments_get ...'
|
52
|
+
end
|
53
|
+
# verify the required parameter 'id' is set
|
54
|
+
if @api_client.config.client_side_validation && id.nil?
|
55
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling EmploymentsApi.employments_get"
|
56
|
+
end
|
57
|
+
# verify the required parameter 'x_account_id' is set
|
58
|
+
if @api_client.config.client_side_validation && x_account_id.nil?
|
59
|
+
fail ArgumentError, "Missing the required parameter 'x_account_id' when calling EmploymentsApi.employments_get"
|
60
|
+
end
|
61
|
+
# resource path
|
62
|
+
local_var_path = '/unified/hris/employments/{id}'.sub('{' + 'id' + '}', CGI.escape(id.to_s))
|
63
|
+
|
64
|
+
# query parameters
|
65
|
+
query_params = opts[:query_params] || {}
|
66
|
+
query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
|
67
|
+
query_params[:'page_size'] = opts[:'page_size'] if !opts[:'page_size'].nil?
|
68
|
+
query_params[:'raw'] = opts[:'raw'] if !opts[:'raw'].nil?
|
69
|
+
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
70
|
+
query_params[:'expand'] = @api_client.build_collection_param(opts[:'expand'], :multi) if !opts[:'expand'].nil?
|
71
|
+
query_params[:'sync_token'] = opts[:'sync_token'] if !opts[:'sync_token'].nil?
|
72
|
+
|
73
|
+
# header parameters
|
74
|
+
header_params = opts[:header_params] || {}
|
75
|
+
# HTTP header 'Accept' (if needed)
|
76
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
77
|
+
header_params[:'x-account-id'] = x_account_id
|
78
|
+
|
79
|
+
# form parameters
|
80
|
+
form_params = opts[:form_params] || {}
|
81
|
+
|
82
|
+
# http body (model)
|
83
|
+
post_body = opts[:debug_body]
|
84
|
+
|
85
|
+
# return_type
|
86
|
+
return_type = opts[:debug_return_type] || 'EmploymentResult'
|
87
|
+
|
88
|
+
# auth_names
|
89
|
+
auth_names = opts[:debug_auth_names] || ['basic']
|
90
|
+
|
91
|
+
new_options = opts.merge(
|
92
|
+
:operation => :"EmploymentsApi.employments_get",
|
93
|
+
:header_params => header_params,
|
94
|
+
:query_params => query_params,
|
95
|
+
:form_params => form_params,
|
96
|
+
:body => post_body,
|
97
|
+
:auth_names => auth_names,
|
98
|
+
:return_type => return_type
|
99
|
+
)
|
100
|
+
|
101
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
102
|
+
if @api_client.config.debugging
|
103
|
+
@api_client.config.logger.debug "API called: EmploymentsApi#employments_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
104
|
+
end
|
105
|
+
return data, status_code, headers
|
106
|
+
end
|
107
|
+
|
108
|
+
#
|
109
|
+
# @param x_account_id [String] The account identifier
|
110
|
+
# @param [Hash] opts the optional parameters
|
111
|
+
# @option opts [String] :page The page number of the results to fetch
|
112
|
+
# @option opts [String] :page_size The number of results per page (default to '25')
|
113
|
+
# @option opts [Boolean] :raw Indicates that the raw request result is returned (default to false)
|
114
|
+
# @option opts [Array<String>] :fields The list of fields to return in the response (if empty, all fields are returned)
|
115
|
+
# @option opts [Array<String>] :expand The list of fields that will be expanded in the response
|
116
|
+
# @option opts [String] :sync_token The sync token to select the only updated results
|
117
|
+
# @return [EmploymentsPaginated]
|
118
|
+
def employments_list(x_account_id, opts = {})
|
119
|
+
data, _status_code, _headers = employments_list_with_http_info(x_account_id, opts)
|
120
|
+
data
|
121
|
+
end
|
122
|
+
|
123
|
+
#
|
124
|
+
# @param x_account_id [String] The account identifier
|
125
|
+
# @param [Hash] opts the optional parameters
|
126
|
+
# @option opts [String] :page The page number of the results to fetch
|
127
|
+
# @option opts [String] :page_size The number of results per page (default to '25')
|
128
|
+
# @option opts [Boolean] :raw Indicates that the raw request result is returned (default to false)
|
129
|
+
# @option opts [Array<String>] :fields The list of fields to return in the response (if empty, all fields are returned)
|
130
|
+
# @option opts [Array<String>] :expand The list of fields that will be expanded in the response
|
131
|
+
# @option opts [String] :sync_token The sync token to select the only updated results
|
132
|
+
# @return [Array<(EmploymentsPaginated, Integer, Hash)>] EmploymentsPaginated data, response status code and response headers
|
133
|
+
def employments_list_with_http_info(x_account_id, opts = {})
|
134
|
+
if @api_client.config.debugging
|
135
|
+
@api_client.config.logger.debug 'Calling API: EmploymentsApi.employments_list ...'
|
136
|
+
end
|
137
|
+
# verify the required parameter 'x_account_id' is set
|
138
|
+
if @api_client.config.client_side_validation && x_account_id.nil?
|
139
|
+
fail ArgumentError, "Missing the required parameter 'x_account_id' when calling EmploymentsApi.employments_list"
|
140
|
+
end
|
141
|
+
# resource path
|
142
|
+
local_var_path = '/unified/hris/employments'
|
143
|
+
|
144
|
+
# query parameters
|
145
|
+
query_params = opts[:query_params] || {}
|
146
|
+
query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
|
147
|
+
query_params[:'page_size'] = opts[:'page_size'] if !opts[:'page_size'].nil?
|
148
|
+
query_params[:'raw'] = opts[:'raw'] if !opts[:'raw'].nil?
|
149
|
+
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
150
|
+
query_params[:'expand'] = @api_client.build_collection_param(opts[:'expand'], :multi) if !opts[:'expand'].nil?
|
151
|
+
query_params[:'sync_token'] = opts[:'sync_token'] if !opts[:'sync_token'].nil?
|
152
|
+
|
153
|
+
# header parameters
|
154
|
+
header_params = opts[:header_params] || {}
|
155
|
+
# HTTP header 'Accept' (if needed)
|
156
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
157
|
+
header_params[:'x-account-id'] = x_account_id
|
158
|
+
|
159
|
+
# form parameters
|
160
|
+
form_params = opts[:form_params] || {}
|
161
|
+
|
162
|
+
# http body (model)
|
163
|
+
post_body = opts[:debug_body]
|
164
|
+
|
165
|
+
# return_type
|
166
|
+
return_type = opts[:debug_return_type] || 'EmploymentsPaginated'
|
167
|
+
|
168
|
+
# auth_names
|
169
|
+
auth_names = opts[:debug_auth_names] || ['basic']
|
170
|
+
|
171
|
+
new_options = opts.merge(
|
172
|
+
:operation => :"EmploymentsApi.employments_list",
|
173
|
+
:header_params => header_params,
|
174
|
+
:query_params => query_params,
|
175
|
+
:form_params => form_params,
|
176
|
+
:body => post_body,
|
177
|
+
:auth_names => auth_names,
|
178
|
+
:return_type => return_type
|
179
|
+
)
|
180
|
+
|
181
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
182
|
+
if @api_client.config.debugging
|
183
|
+
@api_client.config.logger.debug "API called: EmploymentsApi#employments_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
184
|
+
end
|
185
|
+
return data, status_code, headers
|
186
|
+
end
|
187
|
+
end
|
188
|
+
end
|
@@ -0,0 +1,188 @@
|
|
1
|
+
=begin
|
2
|
+
#StackOne Unified API - HRIS
|
3
|
+
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 6.4.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'cgi'
|
14
|
+
|
15
|
+
module StackOneHRIS
|
16
|
+
class LocationsApi
|
17
|
+
attr_accessor :api_client
|
18
|
+
|
19
|
+
def initialize(api_client = ApiClient.default)
|
20
|
+
@api_client = api_client
|
21
|
+
end
|
22
|
+
#
|
23
|
+
# @param id [String]
|
24
|
+
# @param x_account_id [String] The account identifier
|
25
|
+
# @param [Hash] opts the optional parameters
|
26
|
+
# @option opts [String] :page The page number of the results to fetch
|
27
|
+
# @option opts [String] :page_size The number of results per page (default to '25')
|
28
|
+
# @option opts [Boolean] :raw Indicates that the raw request result is returned (default to false)
|
29
|
+
# @option opts [Array<String>] :fields The list of fields to return in the response (if empty, all fields are returned)
|
30
|
+
# @option opts [Array<String>] :expand The list of fields that will be expanded in the response
|
31
|
+
# @option opts [String] :sync_token The sync token to select the only updated results
|
32
|
+
# @return [LocationResult]
|
33
|
+
def hris_locations_get(id, x_account_id, opts = {})
|
34
|
+
data, _status_code, _headers = hris_locations_get_with_http_info(id, x_account_id, opts)
|
35
|
+
data
|
36
|
+
end
|
37
|
+
|
38
|
+
#
|
39
|
+
# @param id [String]
|
40
|
+
# @param x_account_id [String] The account identifier
|
41
|
+
# @param [Hash] opts the optional parameters
|
42
|
+
# @option opts [String] :page The page number of the results to fetch
|
43
|
+
# @option opts [String] :page_size The number of results per page (default to '25')
|
44
|
+
# @option opts [Boolean] :raw Indicates that the raw request result is returned (default to false)
|
45
|
+
# @option opts [Array<String>] :fields The list of fields to return in the response (if empty, all fields are returned)
|
46
|
+
# @option opts [Array<String>] :expand The list of fields that will be expanded in the response
|
47
|
+
# @option opts [String] :sync_token The sync token to select the only updated results
|
48
|
+
# @return [Array<(LocationResult, Integer, Hash)>] LocationResult data, response status code and response headers
|
49
|
+
def hris_locations_get_with_http_info(id, x_account_id, opts = {})
|
50
|
+
if @api_client.config.debugging
|
51
|
+
@api_client.config.logger.debug 'Calling API: LocationsApi.hris_locations_get ...'
|
52
|
+
end
|
53
|
+
# verify the required parameter 'id' is set
|
54
|
+
if @api_client.config.client_side_validation && id.nil?
|
55
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling LocationsApi.hris_locations_get"
|
56
|
+
end
|
57
|
+
# verify the required parameter 'x_account_id' is set
|
58
|
+
if @api_client.config.client_side_validation && x_account_id.nil?
|
59
|
+
fail ArgumentError, "Missing the required parameter 'x_account_id' when calling LocationsApi.hris_locations_get"
|
60
|
+
end
|
61
|
+
# resource path
|
62
|
+
local_var_path = '/unified/hris/locations/{id}'.sub('{' + 'id' + '}', CGI.escape(id.to_s))
|
63
|
+
|
64
|
+
# query parameters
|
65
|
+
query_params = opts[:query_params] || {}
|
66
|
+
query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
|
67
|
+
query_params[:'page_size'] = opts[:'page_size'] if !opts[:'page_size'].nil?
|
68
|
+
query_params[:'raw'] = opts[:'raw'] if !opts[:'raw'].nil?
|
69
|
+
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
70
|
+
query_params[:'expand'] = @api_client.build_collection_param(opts[:'expand'], :multi) if !opts[:'expand'].nil?
|
71
|
+
query_params[:'sync_token'] = opts[:'sync_token'] if !opts[:'sync_token'].nil?
|
72
|
+
|
73
|
+
# header parameters
|
74
|
+
header_params = opts[:header_params] || {}
|
75
|
+
# HTTP header 'Accept' (if needed)
|
76
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
77
|
+
header_params[:'x-account-id'] = x_account_id
|
78
|
+
|
79
|
+
# form parameters
|
80
|
+
form_params = opts[:form_params] || {}
|
81
|
+
|
82
|
+
# http body (model)
|
83
|
+
post_body = opts[:debug_body]
|
84
|
+
|
85
|
+
# return_type
|
86
|
+
return_type = opts[:debug_return_type] || 'LocationResult'
|
87
|
+
|
88
|
+
# auth_names
|
89
|
+
auth_names = opts[:debug_auth_names] || ['basic']
|
90
|
+
|
91
|
+
new_options = opts.merge(
|
92
|
+
:operation => :"LocationsApi.hris_locations_get",
|
93
|
+
:header_params => header_params,
|
94
|
+
:query_params => query_params,
|
95
|
+
:form_params => form_params,
|
96
|
+
:body => post_body,
|
97
|
+
:auth_names => auth_names,
|
98
|
+
:return_type => return_type
|
99
|
+
)
|
100
|
+
|
101
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
102
|
+
if @api_client.config.debugging
|
103
|
+
@api_client.config.logger.debug "API called: LocationsApi#hris_locations_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
104
|
+
end
|
105
|
+
return data, status_code, headers
|
106
|
+
end
|
107
|
+
|
108
|
+
#
|
109
|
+
# @param x_account_id [String] The account identifier
|
110
|
+
# @param [Hash] opts the optional parameters
|
111
|
+
# @option opts [String] :page The page number of the results to fetch
|
112
|
+
# @option opts [String] :page_size The number of results per page (default to '25')
|
113
|
+
# @option opts [Boolean] :raw Indicates that the raw request result is returned (default to false)
|
114
|
+
# @option opts [Array<String>] :fields The list of fields to return in the response (if empty, all fields are returned)
|
115
|
+
# @option opts [Array<String>] :expand The list of fields that will be expanded in the response
|
116
|
+
# @option opts [String] :sync_token The sync token to select the only updated results
|
117
|
+
# @return [LocationsPaginated]
|
118
|
+
def hris_locations_list(x_account_id, opts = {})
|
119
|
+
data, _status_code, _headers = hris_locations_list_with_http_info(x_account_id, opts)
|
120
|
+
data
|
121
|
+
end
|
122
|
+
|
123
|
+
#
|
124
|
+
# @param x_account_id [String] The account identifier
|
125
|
+
# @param [Hash] opts the optional parameters
|
126
|
+
# @option opts [String] :page The page number of the results to fetch
|
127
|
+
# @option opts [String] :page_size The number of results per page (default to '25')
|
128
|
+
# @option opts [Boolean] :raw Indicates that the raw request result is returned (default to false)
|
129
|
+
# @option opts [Array<String>] :fields The list of fields to return in the response (if empty, all fields are returned)
|
130
|
+
# @option opts [Array<String>] :expand The list of fields that will be expanded in the response
|
131
|
+
# @option opts [String] :sync_token The sync token to select the only updated results
|
132
|
+
# @return [Array<(LocationsPaginated, Integer, Hash)>] LocationsPaginated data, response status code and response headers
|
133
|
+
def hris_locations_list_with_http_info(x_account_id, opts = {})
|
134
|
+
if @api_client.config.debugging
|
135
|
+
@api_client.config.logger.debug 'Calling API: LocationsApi.hris_locations_list ...'
|
136
|
+
end
|
137
|
+
# verify the required parameter 'x_account_id' is set
|
138
|
+
if @api_client.config.client_side_validation && x_account_id.nil?
|
139
|
+
fail ArgumentError, "Missing the required parameter 'x_account_id' when calling LocationsApi.hris_locations_list"
|
140
|
+
end
|
141
|
+
# resource path
|
142
|
+
local_var_path = '/unified/hris/locations'
|
143
|
+
|
144
|
+
# query parameters
|
145
|
+
query_params = opts[:query_params] || {}
|
146
|
+
query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
|
147
|
+
query_params[:'page_size'] = opts[:'page_size'] if !opts[:'page_size'].nil?
|
148
|
+
query_params[:'raw'] = opts[:'raw'] if !opts[:'raw'].nil?
|
149
|
+
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
150
|
+
query_params[:'expand'] = @api_client.build_collection_param(opts[:'expand'], :multi) if !opts[:'expand'].nil?
|
151
|
+
query_params[:'sync_token'] = opts[:'sync_token'] if !opts[:'sync_token'].nil?
|
152
|
+
|
153
|
+
# header parameters
|
154
|
+
header_params = opts[:header_params] || {}
|
155
|
+
# HTTP header 'Accept' (if needed)
|
156
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
157
|
+
header_params[:'x-account-id'] = x_account_id
|
158
|
+
|
159
|
+
# form parameters
|
160
|
+
form_params = opts[:form_params] || {}
|
161
|
+
|
162
|
+
# http body (model)
|
163
|
+
post_body = opts[:debug_body]
|
164
|
+
|
165
|
+
# return_type
|
166
|
+
return_type = opts[:debug_return_type] || 'LocationsPaginated'
|
167
|
+
|
168
|
+
# auth_names
|
169
|
+
auth_names = opts[:debug_auth_names] || ['basic']
|
170
|
+
|
171
|
+
new_options = opts.merge(
|
172
|
+
:operation => :"LocationsApi.hris_locations_list",
|
173
|
+
:header_params => header_params,
|
174
|
+
:query_params => query_params,
|
175
|
+
:form_params => form_params,
|
176
|
+
:body => post_body,
|
177
|
+
:auth_names => auth_names,
|
178
|
+
:return_type => return_type
|
179
|
+
)
|
180
|
+
|
181
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
182
|
+
if @api_client.config.debugging
|
183
|
+
@api_client.config.logger.debug "API called: LocationsApi#hris_locations_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
184
|
+
end
|
185
|
+
return data, status_code, headers
|
186
|
+
end
|
187
|
+
end
|
188
|
+
end
|
@@ -1,9 +1,9 @@
|
|
1
1
|
=begin
|
2
|
-
#StackOne Unified API
|
2
|
+
#StackOne Unified API - HRIS
|
3
3
|
|
4
|
-
#The documentation for the StackOne Unified API
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.0
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 6.4.0
|
@@ -17,7 +17,7 @@ require 'tempfile'
|
|
17
17
|
require 'time'
|
18
18
|
require 'typhoeus'
|
19
19
|
|
20
|
-
module
|
20
|
+
module StackOneHRIS
|
21
21
|
class ApiClient
|
22
22
|
# The Configuration object holding settings to be used in the API client.
|
23
23
|
attr_accessor :config
|
@@ -278,7 +278,7 @@ module StackOneHrisClient
|
|
278
278
|
end
|
279
279
|
else
|
280
280
|
# models (e.g. Pet) or oneOf
|
281
|
-
klass =
|
281
|
+
klass = StackOneHRIS.const_get(return_type)
|
282
282
|
klass.respond_to?(:openapi_one_of) ? klass.build(data) : klass.build_from_hash(data)
|
283
283
|
end
|
284
284
|
end
|
@@ -1,16 +1,16 @@
|
|
1
1
|
=begin
|
2
|
-
#StackOne Unified API
|
2
|
+
#StackOne Unified API - HRIS
|
3
3
|
|
4
|
-
#The documentation for the StackOne Unified API
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.0
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 6.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
13
|
-
module
|
13
|
+
module StackOneHRIS
|
14
14
|
class ApiError < StandardError
|
15
15
|
attr_reader :code, :response_headers, :response_body
|
16
16
|
|
@@ -1,16 +1,16 @@
|
|
1
1
|
=begin
|
2
|
-
#StackOne Unified API
|
2
|
+
#StackOne Unified API - HRIS
|
3
3
|
|
4
|
-
#The documentation for the StackOne Unified API
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.0
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 6.4.0
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
13
|
-
module
|
13
|
+
module StackOneHRIS
|
14
14
|
class Configuration
|
15
15
|
# Defines url scheme
|
16
16
|
attr_accessor :scheme
|
@@ -1,9 +1,9 @@
|
|
1
1
|
=begin
|
2
|
-
#StackOne Unified API
|
2
|
+
#StackOne Unified API - HRIS
|
3
3
|
|
4
|
-
#The documentation for the StackOne Unified API
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.0
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 6.4.0
|
@@ -13,7 +13,7 @@ OpenAPI Generator version: 6.4.0
|
|
13
13
|
require 'date'
|
14
14
|
require 'time'
|
15
15
|
|
16
|
-
module
|
16
|
+
module StackOneHRIS
|
17
17
|
class Account
|
18
18
|
attr_accessor :id
|
19
19
|
|
@@ -74,13 +74,13 @@ module StackOneHrisClient
|
|
74
74
|
# @param [Hash] attributes Model attributes in the form of hash
|
75
75
|
def initialize(attributes = {})
|
76
76
|
if (!attributes.is_a?(Hash))
|
77
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `
|
77
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `StackOneHRIS::Account` initialize method"
|
78
78
|
end
|
79
79
|
|
80
80
|
# check to see if the attribute exists and convert string to symbol for hash key
|
81
81
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
82
82
|
if (!self.class.attribute_map.key?(k.to_sym))
|
83
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `
|
83
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `StackOneHRIS::Account`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
84
84
|
end
|
85
85
|
h[k.to_sym] = v
|
86
86
|
}
|
@@ -266,7 +266,7 @@ module StackOneHrisClient
|
|
266
266
|
end
|
267
267
|
else # model
|
268
268
|
# models (e.g. Pet) or oneOf
|
269
|
-
klass =
|
269
|
+
klass = StackOneHRIS.const_get(type)
|
270
270
|
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
271
271
|
end
|
272
272
|
end
|