Class: StackOneHrisClient::EmployeesApi
- Inherits:
-
Object
- Object
- StackOneHrisClient::EmployeesApi
- Defined in:
- lib/stackone_hris_client/api/employees_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
- #employees_get(id, x_account_id, opts = {}) ⇒ EmployeeResult
-
#employees_get_with_http_info(id, x_account_id, opts = {}) ⇒ Array<(EmployeeResult, Integer, Hash)>
EmployeeResult data, response status code and response headers.
- #employees_list(x_account_id, opts = {}) ⇒ EmployeesPaginated
-
#employees_list_with_http_info(x_account_id, opts = {}) ⇒ Array<(EmployeesPaginated, Integer, Hash)>
EmployeesPaginated data, response status code and response headers.
-
#initialize(api_client = ApiClient.default) ⇒ EmployeesApi
constructor
A new instance of EmployeesApi.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ EmployeesApi
Returns a new instance of EmployeesApi.
19 20 21 |
# File 'lib/stackone_hris_client/api/employees_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/stackone_hris_client/api/employees_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#employees_get(id, x_account_id, opts = {}) ⇒ EmployeeResult
32 33 34 35 |
# File 'lib/stackone_hris_client/api/employees_api.rb', line 32 def employees_get(id, x_account_id, opts = {}) data, _status_code, _headers = employees_get_with_http_info(id, x_account_id, opts) data end |
#employees_get_with_http_info(id, x_account_id, opts = {}) ⇒ Array<(EmployeeResult, Integer, Hash)>
Returns EmployeeResult data, response status code and response headers.
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/stackone_hris_client/api/employees_api.rb', line 47 def employees_get_with_http_info(id, x_account_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: EmployeesApi.employees_get ...' end # verify the required parameter 'id' is set if @api_client.config.client_side_validation && id.nil? fail ArgumentError, "Missing the required parameter 'id' when calling EmployeesApi.employees_get" end # verify the required parameter 'x_account_id' is set if @api_client.config.client_side_validation && x_account_id.nil? fail ArgumentError, "Missing the required parameter 'x_account_id' when calling EmployeesApi.employees_get" end # resource path local_var_path = '/unified/hris/employees/{id}'.sub('{' + 'id' + '}', CGI.escape(id.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil? query_params[:'page_size'] = opts[:'page_size'] if !opts[:'page_size'].nil? query_params[:'raw'] = opts[:'raw'] if !opts[:'raw'].nil? query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil? query_params[:'expand'] = @api_client.build_collection_param(opts[:'expand'], :multi) if !opts[:'expand'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) header_params[:'x-account-id'] = x_account_id # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'EmployeeResult' # auth_names auth_names = opts[:debug_auth_names] || ['basic'] = opts.merge( :operation => :"EmployeesApi.employees_get", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: EmployeesApi#employees_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#employees_list(x_account_id, opts = {}) ⇒ EmployeesPaginated
114 115 116 117 |
# File 'lib/stackone_hris_client/api/employees_api.rb', line 114 def employees_list(x_account_id, opts = {}) data, _status_code, _headers = employees_list_with_http_info(x_account_id, opts) data end |
#employees_list_with_http_info(x_account_id, opts = {}) ⇒ Array<(EmployeesPaginated, Integer, Hash)>
Returns EmployeesPaginated data, response status code and response headers.
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'lib/stackone_hris_client/api/employees_api.rb', line 128 def employees_list_with_http_info(x_account_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: EmployeesApi.employees_list ...' end # verify the required parameter 'x_account_id' is set if @api_client.config.client_side_validation && x_account_id.nil? fail ArgumentError, "Missing the required parameter 'x_account_id' when calling EmployeesApi.employees_list" end # resource path local_var_path = '/unified/hris/employees' # query parameters query_params = opts[:query_params] || {} query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil? query_params[:'page_size'] = opts[:'page_size'] if !opts[:'page_size'].nil? query_params[:'raw'] = opts[:'raw'] if !opts[:'raw'].nil? query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil? query_params[:'expand'] = @api_client.build_collection_param(opts[:'expand'], :multi) if !opts[:'expand'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) header_params[:'x-account-id'] = x_account_id # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'EmployeesPaginated' # auth_names auth_names = opts[:debug_auth_names] || ['basic'] = opts.merge( :operation => :"EmployeesApi.employees_list", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: EmployeesApi#employees_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |