Class: SmartRecruiters::StatusesApi

Inherits:
Object
  • Object
show all
Defined in:
lib/smart_recruiters/api/statuses_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ StatusesApi

Returns a new instance of StatusesApi.



7
8
9
# File 'lib/smart_recruiters/api/statuses_api.rb', line 7

def initialize(api_client = ApiClient.default)
  @api_client = api_client
end

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



5
6
7
# File 'lib/smart_recruiters/api/statuses_api.rb', line 5

def api_client
  @api_client
end

Instance Method Details

#statuses_candidate_put(body, interview_id, opts = {}) ⇒ nil

Changes a candidate’s status.

Parameters:

  • body

    New candidate's status

  • interview_id

    ID of the interview

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (nil)


15
16
17
18
# File 'lib/smart_recruiters/api/statuses_api.rb', line 15

def statuses_candidate_put(body, interview_id, opts = {})
  statuses_candidate_put_with_http_info(body, interview_id, opts)
  nil
end

#statuses_candidate_put_with_http_info(body, interview_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>

Changes a candidate&#x27;s status.

Parameters:

  • body

    New candidate&#x27;s status

  • interview_id

    ID of the interview

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(nil, Integer, Hash)>)

    nil, response status code and response headers



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
# File 'lib/smart_recruiters/api/statuses_api.rb', line 25

def statuses_candidate_put_with_http_info(body, interview_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: StatusesApi.statuses_candidate_put ...'
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling StatusesApi.statuses_candidate_put"
  end
  # verify the required parameter 'interview_id' is set
  if @api_client.config.client_side_validation && interview_id.nil?
    fail ArgumentError, "Missing the required parameter 'interview_id' when calling StatusesApi.statuses_candidate_put"
  end
  # resource path
  local_var_path = '/interviews/{interviewId}/candidate/status'.sub('{' + 'interviewId' + '}', interview_id.to_s)

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] || @api_client.object_to_http_body(body) 

  return_type = opts[:return_type] 

  auth_names = opts[:auth_names] || ['key', 'oauth']
  data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: StatusesApi#statuses_candidate_put\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#statuses_interviewer_put(body, interview_id, timeslot_id, user_id, opts = {}) ⇒ nil

Changes a interviewer’s status in given timeslot

Parameters:

  • body

    New interviewer&#x27;s status

  • interview_id

    ID of the interview

  • timeslot_id

    ID of the timeslot

  • user_id

    ID of the user

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (nil)


79
80
81
82
# File 'lib/smart_recruiters/api/statuses_api.rb', line 79

def statuses_interviewer_put(body, interview_id, timeslot_id, user_id, opts = {})
  statuses_interviewer_put_with_http_info(body, interview_id, timeslot_id, user_id, opts)
  nil
end

#statuses_interviewer_put_with_http_info(body, interview_id, timeslot_id, user_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>

Changes a interviewer&#x27;s status in given timeslot

Parameters:

  • body

    New interviewer&#x27;s status

  • interview_id

    ID of the interview

  • timeslot_id

    ID of the timeslot

  • user_id

    ID of the user

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(nil, Integer, Hash)>)

    nil, response status code and response headers



91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# File 'lib/smart_recruiters/api/statuses_api.rb', line 91

def statuses_interviewer_put_with_http_info(body, interview_id, timeslot_id, user_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: StatusesApi.statuses_interviewer_put ...'
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling StatusesApi.statuses_interviewer_put"
  end
  # verify the required parameter 'interview_id' is set
  if @api_client.config.client_side_validation && interview_id.nil?
    fail ArgumentError, "Missing the required parameter 'interview_id' when calling StatusesApi.statuses_interviewer_put"
  end
  # verify the required parameter 'timeslot_id' is set
  if @api_client.config.client_side_validation && timeslot_id.nil?
    fail ArgumentError, "Missing the required parameter 'timeslot_id' when calling StatusesApi.statuses_interviewer_put"
  end
  # verify the required parameter 'user_id' is set
  if @api_client.config.client_side_validation && user_id.nil?
    fail ArgumentError, "Missing the required parameter 'user_id' when calling StatusesApi.statuses_interviewer_put"
  end
  # resource path
  local_var_path = '/interviews/{interviewId}/timeslots/{timeslotId}/interviewers/{userId}/status'.sub('{' + 'interviewId' + '}', interview_id.to_s).sub('{' + 'timeslotId' + '}', timeslot_id.to_s).sub('{' + 'userId' + '}', user_id.to_s)

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] || @api_client.object_to_http_body(body) 

  return_type = opts[:return_type] 

  auth_names = opts[:auth_names] || ['key', 'oauth']
  data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: StatusesApi#statuses_interviewer_put\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#statuses_timeslot_candidate_put(body, interview_id, timeslot_id, opts = {}) ⇒ nil

Changes a candidate’s status in given timeslot

Parameters:

  • body

    New candidate&#x27;s status

  • interview_id

    ID of the interview

  • timeslot_id

    ID of the timeslot

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (nil)


152
153
154
155
# File 'lib/smart_recruiters/api/statuses_api.rb', line 152

def statuses_timeslot_candidate_put(body, interview_id, timeslot_id, opts = {})
  statuses_timeslot_candidate_put_with_http_info(body, interview_id, timeslot_id, opts)
  nil
end

#statuses_timeslot_candidate_put_with_http_info(body, interview_id, timeslot_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>

Changes a candidate&#x27;s status in given timeslot

Parameters:

  • body

    New candidate&#x27;s status

  • interview_id

    ID of the interview

  • timeslot_id

    ID of the timeslot

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(nil, Integer, Hash)>)

    nil, response status code and response headers



163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
# File 'lib/smart_recruiters/api/statuses_api.rb', line 163

def statuses_timeslot_candidate_put_with_http_info(body, interview_id, timeslot_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: StatusesApi.statuses_timeslot_candidate_put ...'
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling StatusesApi.statuses_timeslot_candidate_put"
  end
  # verify the required parameter 'interview_id' is set
  if @api_client.config.client_side_validation && interview_id.nil?
    fail ArgumentError, "Missing the required parameter 'interview_id' when calling StatusesApi.statuses_timeslot_candidate_put"
  end
  # verify the required parameter 'timeslot_id' is set
  if @api_client.config.client_side_validation && timeslot_id.nil?
    fail ArgumentError, "Missing the required parameter 'timeslot_id' when calling StatusesApi.statuses_timeslot_candidate_put"
  end
  # resource path
  local_var_path = '/interviews/{interviewId}/timeslots/{timeslotId}/candidateStatus'.sub('{' + 'interviewId' + '}', interview_id.to_s).sub('{' + 'timeslotId' + '}', timeslot_id.to_s)

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:body] || @api_client.object_to_http_body(body) 

  return_type = opts[:return_type] 

  auth_names = opts[:auth_names] || ['key', 'oauth']
  data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type)

  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: StatusesApi#statuses_timeslot_candidate_put\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end