Class: KoronaClient::OrganizationalUnitsApi

Inherits:
Object
  • Object
show all
Defined in:
lib/korona_client/api/organizational_units_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ OrganizationalUnitsApi

Returns a new instance of OrganizationalUnitsApi.



19
20
21
# File 'lib/korona_client/api/organizational_units_api.rb', line 19

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

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



17
18
19
# File 'lib/korona_client/api/organizational_units_api.rb', line 17

def api_client
  @api_client
end

Instance Method Details

#add_organizational_unit_day_ratings(korona_account_id, organizational_unit_id, body, opts = {}) ⇒ Array<AddOrUpdateResult>

adds a batch of new day ratings

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

  • body

    an array of new day ratings

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

    the optional parameters

Returns:



29
30
31
32
# File 'lib/korona_client/api/organizational_units_api.rb', line 29

def add_organizational_unit_day_ratings(, organizational_unit_id, body, opts = {})
  data, _status_code, _headers = add_organizational_unit_day_ratings_with_http_info(, organizational_unit_id, body, opts)
  data
end

#add_organizational_unit_day_ratings_with_http_info(korona_account_id, organizational_unit_id, body, opts = {}) ⇒ Array<(Array<AddOrUpdateResult>, Fixnum, Hash)>

adds a batch of new day ratings

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

  • body

    an array of new day ratings

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

    the optional parameters

Returns:

  • (Array<(Array<AddOrUpdateResult>, Fixnum, Hash)>)

    Array<AddOrUpdateResult> data, response status code and response headers



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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/korona_client/api/organizational_units_api.rb', line 41

def add_organizational_unit_day_ratings_with_http_info(, organizational_unit_id, body, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: OrganizationalUnitsApi.add_organizational_unit_day_ratings ...'
  end
  # verify the required parameter 'korona_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling OrganizationalUnitsApi.add_organizational_unit_day_ratings"
  end
  # verify the required parameter 'organizational_unit_id' is set
  if @api_client.config.client_side_validation && organizational_unit_id.nil?
    fail ArgumentError, "Missing the required parameter 'organizational_unit_id' when calling OrganizationalUnitsApi.add_organizational_unit_day_ratings"
  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 OrganizationalUnitsApi.add_organizational_unit_day_ratings"
  end
  # resource path
  local_var_path = '/accounts/{koronaAccountId}/organizationalUnits/{organizationalUnitId}/dayRatings'.sub('{' + 'koronaAccountId' + '}', .to_s).sub('{' + 'organizationalUnitId' + '}', organizational_unit_id.to_s)

  # query parameters
  query_params = {}

  # header parameters
  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 = {}

  # http body (model)
  post_body = @api_client.object_to_http_body(body)
  auth_names = ['basicAuth']
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'Array<AddOrUpdateResult>')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: OrganizationalUnitsApi#add_organizational_unit_day_ratings\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#delete_organizational_unit_day_rating(korona_account_id, organizational_unit_id, day_rating_id_or_date, opts = {}) ⇒ nil

deletes the single day rating by its id or date

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

  • day_rating_id_or_date

    the id or date (YYYY-MM-DD) of the day rating

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

    the optional parameters

Returns:

  • (nil)


95
96
97
98
# File 'lib/korona_client/api/organizational_units_api.rb', line 95

def delete_organizational_unit_day_rating(, organizational_unit_id, day_rating_id_or_date, opts = {})
  delete_organizational_unit_day_rating_with_http_info(, organizational_unit_id, day_rating_id_or_date, opts)
  nil
end

#delete_organizational_unit_day_rating_with_http_info(korona_account_id, organizational_unit_id, day_rating_id_or_date, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>

deletes the single day rating by its id or date

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

  • day_rating_id_or_date

    the id or date (YYYY-MM-DD) of the day rating

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

    the optional parameters

Returns:

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

    nil, response status code and response headers



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
146
147
148
149
150
151
152
# File 'lib/korona_client/api/organizational_units_api.rb', line 107

def delete_organizational_unit_day_rating_with_http_info(, organizational_unit_id, day_rating_id_or_date, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: OrganizationalUnitsApi.delete_organizational_unit_day_rating ...'
  end
  # verify the required parameter 'korona_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling OrganizationalUnitsApi.delete_organizational_unit_day_rating"
  end
  # verify the required parameter 'organizational_unit_id' is set
  if @api_client.config.client_side_validation && organizational_unit_id.nil?
    fail ArgumentError, "Missing the required parameter 'organizational_unit_id' when calling OrganizationalUnitsApi.delete_organizational_unit_day_rating"
  end
  # verify the required parameter 'day_rating_id_or_date' is set
  if @api_client.config.client_side_validation && day_rating_id_or_date.nil?
    fail ArgumentError, "Missing the required parameter 'day_rating_id_or_date' when calling OrganizationalUnitsApi.delete_organizational_unit_day_rating"
  end
  # resource path
  local_var_path = '/accounts/{koronaAccountId}/organizationalUnits/{organizationalUnitId}/dayRatings/{dayRatingIdOrDate}'.sub('{' + 'koronaAccountId' + '}', .to_s).sub('{' + 'organizationalUnitId' + '}', organizational_unit_id.to_s).sub('{' + 'dayRatingIdOrDate' + '}', day_rating_id_or_date.to_s)

  # query parameters
  query_params = {}

  # header parameters
  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 = {}

  # http body (model)
  post_body = nil
  auth_names = ['basicAuth']
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: OrganizationalUnitsApi#delete_organizational_unit_day_rating\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_organizational_unit(korona_account_id, organizational_unit_id, opts = {}) ⇒ OrganizationalUnit

returns the single organizational unit

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

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

    the optional parameters

Returns:



159
160
161
162
# File 'lib/korona_client/api/organizational_units_api.rb', line 159

def get_organizational_unit(, organizational_unit_id, opts = {})
  data, _status_code, _headers = get_organizational_unit_with_http_info(, organizational_unit_id, opts)
  data
end

#get_organizational_unit_day_rating(korona_account_id, organizational_unit_id, day_rating_id_or_date, opts = {}) ⇒ DayRating

returns the single day rating by its id or date

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

  • day_rating_id_or_date

    the id or date (YYYY-MM-DD) of the day rating

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

    the optional parameters

Returns:



220
221
222
223
# File 'lib/korona_client/api/organizational_units_api.rb', line 220

def get_organizational_unit_day_rating(, organizational_unit_id, day_rating_id_or_date, opts = {})
  data, _status_code, _headers = get_organizational_unit_day_rating_with_http_info(, organizational_unit_id, day_rating_id_or_date, opts)
  data
end

#get_organizational_unit_day_rating_with_http_info(korona_account_id, organizational_unit_id, day_rating_id_or_date, opts = {}) ⇒ Array<(DayRating, Fixnum, Hash)>

returns the single day rating by its id or date

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

  • day_rating_id_or_date

    the id or date (YYYY-MM-DD) of the day rating

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

    the optional parameters

Returns:

  • (Array<(DayRating, Fixnum, Hash)>)

    DayRating data, response status code and response headers



232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# File 'lib/korona_client/api/organizational_units_api.rb', line 232

def get_organizational_unit_day_rating_with_http_info(, organizational_unit_id, day_rating_id_or_date, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: OrganizationalUnitsApi.get_organizational_unit_day_rating ...'
  end
  # verify the required parameter 'korona_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling OrganizationalUnitsApi.get_organizational_unit_day_rating"
  end
  # verify the required parameter 'organizational_unit_id' is set
  if @api_client.config.client_side_validation && organizational_unit_id.nil?
    fail ArgumentError, "Missing the required parameter 'organizational_unit_id' when calling OrganizationalUnitsApi.get_organizational_unit_day_rating"
  end
  # verify the required parameter 'day_rating_id_or_date' is set
  if @api_client.config.client_side_validation && day_rating_id_or_date.nil?
    fail ArgumentError, "Missing the required parameter 'day_rating_id_or_date' when calling OrganizationalUnitsApi.get_organizational_unit_day_rating"
  end
  # resource path
  local_var_path = '/accounts/{koronaAccountId}/organizationalUnits/{organizationalUnitId}/dayRatings/{dayRatingIdOrDate}'.sub('{' + 'koronaAccountId' + '}', .to_s).sub('{' + 'organizationalUnitId' + '}', organizational_unit_id.to_s).sub('{' + 'dayRatingIdOrDate' + '}', day_rating_id_or_date.to_s)

  # query parameters
  query_params = {}

  # header parameters
  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 = {}

  # http body (model)
  post_body = nil
  auth_names = ['basicAuth']
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'DayRating')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: OrganizationalUnitsApi#get_organizational_unit_day_rating\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_organizational_unit_day_ratings(korona_account_id, organizational_unit_id, opts = {}) ⇒ ResultListDayRating

lists all organizational unit related day ratings

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

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

    the optional parameters

Options Hash (opts):

  • :page (Integer)

    number of the page to fetch

  • :size (Integer)

    amount of objects to return per page

  • :sort (String)

    attribute to sort by (multiple separated by comma; max. 5)

Returns:



288
289
290
291
# File 'lib/korona_client/api/organizational_units_api.rb', line 288

def get_organizational_unit_day_ratings(, organizational_unit_id, opts = {})
  data, _status_code, _headers = get_organizational_unit_day_ratings_with_http_info(, organizational_unit_id, opts)
  data
end

#get_organizational_unit_day_ratings_with_http_info(korona_account_id, organizational_unit_id, opts = {}) ⇒ Array<(ResultListDayRating, Fixnum, Hash)>

lists all organizational unit related day ratings

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

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

    the optional parameters

Options Hash (opts):

  • :page (Integer)

    number of the page to fetch

  • :size (Integer)

    amount of objects to return per page

  • :sort (String)

    attribute to sort by (multiple separated by comma; max. 5)

Returns:

  • (Array<(ResultListDayRating, Fixnum, Hash)>)

    ResultListDayRating data, response status code and response headers



302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
# File 'lib/korona_client/api/organizational_units_api.rb', line 302

def get_organizational_unit_day_ratings_with_http_info(, organizational_unit_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: OrganizationalUnitsApi.get_organizational_unit_day_ratings ...'
  end
  # verify the required parameter 'korona_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling OrganizationalUnitsApi.get_organizational_unit_day_ratings"
  end
  # verify the required parameter 'organizational_unit_id' is set
  if @api_client.config.client_side_validation && organizational_unit_id.nil?
    fail ArgumentError, "Missing the required parameter 'organizational_unit_id' when calling OrganizationalUnitsApi.get_organizational_unit_day_ratings"
  end
  # resource path
  local_var_path = '/accounts/{koronaAccountId}/organizationalUnits/{organizationalUnitId}/dayRatings'.sub('{' + 'koronaAccountId' + '}', .to_s).sub('{' + 'organizationalUnitId' + '}', organizational_unit_id.to_s)

  # query parameters
  query_params = {}
  query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
  query_params[:'size'] = opts[:'size'] if !opts[:'size'].nil?
  query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil?

  # header parameters
  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 = {}

  # http body (model)
  post_body = nil
  auth_names = ['basicAuth']
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'ResultListDayRating')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: OrganizationalUnitsApi#get_organizational_unit_day_ratings\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_organizational_unit_inventory_lists(korona_account_id, organizational_unit_id, opts = {}) ⇒ ResultListInventoryList

lists the inventory lists belonging to the organizational unit (KORONA.retail required)

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

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

    the optional parameters

Options Hash (opts):

  • :page (Integer)

    number of the page to fetch

  • :size (Integer)

    amount of objects to return per page

  • :sort (String)

    attribute to sort by (multiple separated by comma; max. 5)

  • :revision (Integer)

    last revision number, objects with a greater revision than this will be returned

  • :include_deleted (BOOLEAN)

    indicates deleted objects should be loaded or not (default: false)

  • :min_create_time (DateTime)

    min (inclusive) create time of the receipt (ISO 8601; date, time and timezone)

  • :max_create_time (DateTime)

    max (inclusive) create time of the receipt (ISO 8601; date, time and timezone)

  • :min_booking_time (DateTime)

    min (inclusive) booking time of the receipt (ISO 8601; date, time and timezone)

  • :max_booking_time (DateTime)

    max (inclusive) booking time of the receipt (ISO 8601; date, time and timezone)

  • :booking_status (String)

    booking status (possible values: BOOKED, IN_PROGRESS)

Returns:



364
365
366
367
# File 'lib/korona_client/api/organizational_units_api.rb', line 364

def get_organizational_unit_inventory_lists(, organizational_unit_id, opts = {})
  data, _status_code, _headers = get_organizational_unit_inventory_lists_with_http_info(, organizational_unit_id, opts)
  data
end

#get_organizational_unit_inventory_lists_with_http_info(korona_account_id, organizational_unit_id, opts = {}) ⇒ Array<(ResultListInventoryList, Fixnum, Hash)>

lists the inventory lists belonging to the organizational unit (KORONA.retail required)

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

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

    the optional parameters

Options Hash (opts):

  • :page (Integer)

    number of the page to fetch

  • :size (Integer)

    amount of objects to return per page

  • :sort (String)

    attribute to sort by (multiple separated by comma; max. 5)

  • :revision (Integer)

    last revision number, objects with a greater revision than this will be returned

  • :include_deleted (BOOLEAN)

    indicates deleted objects should be loaded or not (default: false)

  • :min_create_time (DateTime)

    min (inclusive) create time of the receipt (ISO 8601; date, time and timezone)

  • :max_create_time (DateTime)

    max (inclusive) create time of the receipt (ISO 8601; date, time and timezone)

  • :min_booking_time (DateTime)

    min (inclusive) booking time of the receipt (ISO 8601; date, time and timezone)

  • :max_booking_time (DateTime)

    max (inclusive) booking time of the receipt (ISO 8601; date, time and timezone)

  • :booking_status (String)

    booking status (possible values: BOOKED, IN_PROGRESS)

Returns:

  • (Array<(ResultListInventoryList, Fixnum, Hash)>)

    ResultListInventoryList data, response status code and response headers



385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
# File 'lib/korona_client/api/organizational_units_api.rb', line 385

def get_organizational_unit_inventory_lists_with_http_info(, organizational_unit_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: OrganizationalUnitsApi.get_organizational_unit_inventory_lists ...'
  end
  # verify the required parameter 'korona_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling OrganizationalUnitsApi.get_organizational_unit_inventory_lists"
  end
  # verify the required parameter 'organizational_unit_id' is set
  if @api_client.config.client_side_validation && organizational_unit_id.nil?
    fail ArgumentError, "Missing the required parameter 'organizational_unit_id' when calling OrganizationalUnitsApi.get_organizational_unit_inventory_lists"
  end
  if @api_client.config.client_side_validation && opts[:'booking_status'] && !['BOOKED', 'IN_PROGRESS'].include?(opts[:'booking_status'])
    fail ArgumentError, 'invalid value for "booking_status", must be one of BOOKED, IN_PROGRESS'
  end
  # resource path
  local_var_path = '/accounts/{koronaAccountId}/organizationalUnits/{organizationalUnitId}/inventoryLists'.sub('{' + 'koronaAccountId' + '}', .to_s).sub('{' + 'organizationalUnitId' + '}', organizational_unit_id.to_s)

  # query parameters
  query_params = {}
  query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
  query_params[:'size'] = opts[:'size'] if !opts[:'size'].nil?
  query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil?
  query_params[:'revision'] = opts[:'revision'] if !opts[:'revision'].nil?
  query_params[:'includeDeleted'] = opts[:'include_deleted'] if !opts[:'include_deleted'].nil?
  query_params[:'minCreateTime'] = opts[:'min_create_time'] if !opts[:'min_create_time'].nil?
  query_params[:'maxCreateTime'] = opts[:'max_create_time'] if !opts[:'max_create_time'].nil?
  query_params[:'minBookingTime'] = opts[:'min_booking_time'] if !opts[:'min_booking_time'].nil?
  query_params[:'maxBookingTime'] = opts[:'max_booking_time'] if !opts[:'max_booking_time'].nil?
  query_params[:'bookingStatus'] = opts[:'booking_status'] if !opts[:'booking_status'].nil?

  # header parameters
  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 = {}

  # http body (model)
  post_body = nil
  auth_names = ['basicAuth']
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'ResultListInventoryList')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: OrganizationalUnitsApi#get_organizational_unit_inventory_lists\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_organizational_unit_product_stocks(korona_account_id, organizational_unit_id, opts = {}) ⇒ ResultListProductStock

lists the product stocks of the organizational unit, in case it contains a warehouse (KORONA.retail required)

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

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

    the optional parameters

Options Hash (opts):

  • :page (Integer)

    number of the page to fetch

  • :size (Integer)

    amount of objects to return per page

  • :sort (String)

    attribute to sort by (multiple separated by comma; max. 5)

  • :revision (Integer)

    last revision number, objects with a greater revision than this will be returned

Returns:



451
452
453
454
# File 'lib/korona_client/api/organizational_units_api.rb', line 451

def get_organizational_unit_product_stocks(, organizational_unit_id, opts = {})
  data, _status_code, _headers = get_organizational_unit_product_stocks_with_http_info(, organizational_unit_id, opts)
  data
end

#get_organizational_unit_product_stocks_with_http_info(korona_account_id, organizational_unit_id, opts = {}) ⇒ Array<(ResultListProductStock, Fixnum, Hash)>

lists the product stocks of the organizational unit, in case it contains a warehouse (KORONA.retail required)

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

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

    the optional parameters

Options Hash (opts):

  • :page (Integer)

    number of the page to fetch

  • :size (Integer)

    amount of objects to return per page

  • :sort (String)

    attribute to sort by (multiple separated by comma; max. 5)

  • :revision (Integer)

    last revision number, objects with a greater revision than this will be returned

Returns:

  • (Array<(ResultListProductStock, Fixnum, Hash)>)

    ResultListProductStock data, response status code and response headers



466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
# File 'lib/korona_client/api/organizational_units_api.rb', line 466

def get_organizational_unit_product_stocks_with_http_info(, organizational_unit_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: OrganizationalUnitsApi.get_organizational_unit_product_stocks ...'
  end
  # verify the required parameter 'korona_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling OrganizationalUnitsApi.get_organizational_unit_product_stocks"
  end
  # verify the required parameter 'organizational_unit_id' is set
  if @api_client.config.client_side_validation && organizational_unit_id.nil?
    fail ArgumentError, "Missing the required parameter 'organizational_unit_id' when calling OrganizationalUnitsApi.get_organizational_unit_product_stocks"
  end
  # resource path
  local_var_path = '/accounts/{koronaAccountId}/organizationalUnits/{organizationalUnitId}/productStocks'.sub('{' + 'koronaAccountId' + '}', .to_s).sub('{' + 'organizationalUnitId' + '}', organizational_unit_id.to_s)

  # query parameters
  query_params = {}
  query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
  query_params[:'size'] = opts[:'size'] if !opts[:'size'].nil?
  query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil?
  query_params[:'revision'] = opts[:'revision'] if !opts[:'revision'].nil?

  # header parameters
  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 = {}

  # http body (model)
  post_body = nil
  auth_names = ['basicAuth']
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'ResultListProductStock')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: OrganizationalUnitsApi#get_organizational_unit_product_stocks\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_organizational_unit_stock_receipts(korona_account_id, organizational_unit_id, opts = {}) ⇒ ResultListStockReceipt

lists the stock receipts belonging to the organizational unit (KORONA.retail required)

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

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

    the optional parameters

Options Hash (opts):

  • :page (Integer)

    number of the page to fetch

  • :size (Integer)

    amount of objects to return per page

  • :sort (String)

    attribute to sort by (multiple separated by comma; max. 5)

  • :revision (Integer)

    last revision number, objects with a greater revision than this will be returned

  • :include_deleted (BOOLEAN)

    indicates deleted objects should be loaded or not (default: false)

  • :min_create_time (DateTime)

    min (inclusive) create time of the receipt (ISO 8601; date, time and timezone)

  • :max_create_time (DateTime)

    max (inclusive) create time of the receipt (ISO 8601; date, time and timezone)

  • :min_booking_time (DateTime)

    min (inclusive) booking time of the receipt (ISO 8601; date, time and timezone)

  • :max_booking_time (DateTime)

    max (inclusive) booking time of the receipt (ISO 8601; date, time and timezone)

  • :source_organizational_unit (String)

    source organizational unit

  • :booking_status (String)

    booking status (possible values: BOOKED, IN_PROGRESS)

  • :number (String)

    number of the related object

Returns:



531
532
533
534
# File 'lib/korona_client/api/organizational_units_api.rb', line 531

def get_organizational_unit_stock_receipts(, organizational_unit_id, opts = {})
  data, _status_code, _headers = get_organizational_unit_stock_receipts_with_http_info(, organizational_unit_id, opts)
  data
end

#get_organizational_unit_stock_receipts_with_http_info(korona_account_id, organizational_unit_id, opts = {}) ⇒ Array<(ResultListStockReceipt, Fixnum, Hash)>

lists the stock receipts belonging to the organizational unit (KORONA.retail required)

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

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

    the optional parameters

Options Hash (opts):

  • :page (Integer)

    number of the page to fetch

  • :size (Integer)

    amount of objects to return per page

  • :sort (String)

    attribute to sort by (multiple separated by comma; max. 5)

  • :revision (Integer)

    last revision number, objects with a greater revision than this will be returned

  • :include_deleted (BOOLEAN)

    indicates deleted objects should be loaded or not (default: false)

  • :min_create_time (DateTime)

    min (inclusive) create time of the receipt (ISO 8601; date, time and timezone)

  • :max_create_time (DateTime)

    max (inclusive) create time of the receipt (ISO 8601; date, time and timezone)

  • :min_booking_time (DateTime)

    min (inclusive) booking time of the receipt (ISO 8601; date, time and timezone)

  • :max_booking_time (DateTime)

    max (inclusive) booking time of the receipt (ISO 8601; date, time and timezone)

  • :source_organizational_unit (String)

    source organizational unit

  • :booking_status (String)

    booking status (possible values: BOOKED, IN_PROGRESS)

  • :number (String)

    number of the related object

Returns:

  • (Array<(ResultListStockReceipt, Fixnum, Hash)>)

    ResultListStockReceipt data, response status code and response headers



554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
# File 'lib/korona_client/api/organizational_units_api.rb', line 554

def get_organizational_unit_stock_receipts_with_http_info(, organizational_unit_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: OrganizationalUnitsApi.get_organizational_unit_stock_receipts ...'
  end
  # verify the required parameter 'korona_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling OrganizationalUnitsApi.get_organizational_unit_stock_receipts"
  end
  # verify the required parameter 'organizational_unit_id' is set
  if @api_client.config.client_side_validation && organizational_unit_id.nil?
    fail ArgumentError, "Missing the required parameter 'organizational_unit_id' when calling OrganizationalUnitsApi.get_organizational_unit_stock_receipts"
  end
  if @api_client.config.client_side_validation && opts[:'booking_status'] && !['BOOKED', 'IN_PROGRESS'].include?(opts[:'booking_status'])
    fail ArgumentError, 'invalid value for "booking_status", must be one of BOOKED, IN_PROGRESS'
  end
  # resource path
  local_var_path = '/accounts/{koronaAccountId}/organizationalUnits/{organizationalUnitId}/stockReceipts'.sub('{' + 'koronaAccountId' + '}', .to_s).sub('{' + 'organizationalUnitId' + '}', organizational_unit_id.to_s)

  # query parameters
  query_params = {}
  query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
  query_params[:'size'] = opts[:'size'] if !opts[:'size'].nil?
  query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil?
  query_params[:'revision'] = opts[:'revision'] if !opts[:'revision'].nil?
  query_params[:'includeDeleted'] = opts[:'include_deleted'] if !opts[:'include_deleted'].nil?
  query_params[:'minCreateTime'] = opts[:'min_create_time'] if !opts[:'min_create_time'].nil?
  query_params[:'maxCreateTime'] = opts[:'max_create_time'] if !opts[:'max_create_time'].nil?
  query_params[:'minBookingTime'] = opts[:'min_booking_time'] if !opts[:'min_booking_time'].nil?
  query_params[:'maxBookingTime'] = opts[:'max_booking_time'] if !opts[:'max_booking_time'].nil?
  query_params[:'sourceOrganizationalUnit'] = opts[:'source_organizational_unit'] if !opts[:'source_organizational_unit'].nil?
  query_params[:'bookingStatus'] = opts[:'booking_status'] if !opts[:'booking_status'].nil?
  query_params[:'number'] = opts[:'number'] if !opts[:'number'].nil?

  # header parameters
  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 = {}

  # http body (model)
  post_body = nil
  auth_names = ['basicAuth']
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'ResultListStockReceipt')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: OrganizationalUnitsApi#get_organizational_unit_stock_receipts\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_organizational_unit_with_http_info(korona_account_id, organizational_unit_id, opts = {}) ⇒ Array<(OrganizationalUnit, Fixnum, Hash)>

returns the single organizational unit

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

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

    the optional parameters

Returns:

  • (Array<(OrganizationalUnit, Fixnum, Hash)>)

    OrganizationalUnit data, response status code and response headers



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
# File 'lib/korona_client/api/organizational_units_api.rb', line 170

def get_organizational_unit_with_http_info(, organizational_unit_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: OrganizationalUnitsApi.get_organizational_unit ...'
  end
  # verify the required parameter 'korona_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling OrganizationalUnitsApi.get_organizational_unit"
  end
  # verify the required parameter 'organizational_unit_id' is set
  if @api_client.config.client_side_validation && organizational_unit_id.nil?
    fail ArgumentError, "Missing the required parameter 'organizational_unit_id' when calling OrganizationalUnitsApi.get_organizational_unit"
  end
  # resource path
  local_var_path = '/accounts/{koronaAccountId}/organizationalUnits/{organizationalUnitId}'.sub('{' + 'koronaAccountId' + '}', .to_s).sub('{' + 'organizationalUnitId' + '}', organizational_unit_id.to_s)

  # query parameters
  query_params = {}

  # header parameters
  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 = {}

  # http body (model)
  post_body = nil
  auth_names = ['basicAuth']
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'OrganizationalUnit')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: OrganizationalUnitsApi#get_organizational_unit\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_organizational_units(korona_account_id, opts = {}) ⇒ ResultListOrganizationalUnit

lists all organizational units

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

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

    the optional parameters

Options Hash (opts):

  • :page (Integer)

    number of the page to fetch

  • :size (Integer)

    amount of objects to return per page

  • :sort (String)

    attribute to sort by (multiple separated by comma; max. 5)

  • :revision (Integer)

    last revision number, objects with a greater revision than this will be returned

  • :include_deleted (BOOLEAN)

    indicates deleted objects should be loaded or not (default: false)

  • :number (String)

    number of the related object

Returns:



623
624
625
626
# File 'lib/korona_client/api/organizational_units_api.rb', line 623

def get_organizational_units(, opts = {})
  data, _status_code, _headers = get_organizational_units_with_http_info(, opts)
  data
end

#get_organizational_units_with_http_info(korona_account_id, opts = {}) ⇒ Array<(ResultListOrganizationalUnit, Fixnum, Hash)>

lists all organizational units

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

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

    the optional parameters

Options Hash (opts):

  • :page (Integer)

    number of the page to fetch

  • :size (Integer)

    amount of objects to return per page

  • :sort (String)

    attribute to sort by (multiple separated by comma; max. 5)

  • :revision (Integer)

    last revision number, objects with a greater revision than this will be returned

  • :include_deleted (BOOLEAN)

    indicates deleted objects should be loaded or not (default: false)

  • :number (String)

    number of the related object

Returns:



639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
# File 'lib/korona_client/api/organizational_units_api.rb', line 639

def get_organizational_units_with_http_info(, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: OrganizationalUnitsApi.get_organizational_units ...'
  end
  # verify the required parameter 'korona_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling OrganizationalUnitsApi.get_organizational_units"
  end
  # resource path
  local_var_path = '/accounts/{koronaAccountId}/organizationalUnits'.sub('{' + 'koronaAccountId' + '}', .to_s)

  # query parameters
  query_params = {}
  query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
  query_params[:'size'] = opts[:'size'] if !opts[:'size'].nil?
  query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil?
  query_params[:'revision'] = opts[:'revision'] if !opts[:'revision'].nil?
  query_params[:'includeDeleted'] = opts[:'include_deleted'] if !opts[:'include_deleted'].nil?
  query_params[:'number'] = opts[:'number'] if !opts[:'number'].nil?

  # header parameters
  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 = {}

  # http body (model)
  post_body = nil
  auth_names = ['basicAuth']
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'ResultListOrganizationalUnit')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: OrganizationalUnitsApi#get_organizational_units\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#update_organizational_unit_day_rating(korona_account_id, organizational_unit_id, day_rating_id_or_date, body, opts = {}) ⇒ nil

updates the day rating by its id or date

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

  • day_rating_id_or_date

    the id or date (YYYY-MM-DD) of the day rating

  • body

    the properties to update of the day rating

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

    the optional parameters

Returns:

  • (nil)


692
693
694
695
# File 'lib/korona_client/api/organizational_units_api.rb', line 692

def update_organizational_unit_day_rating(, organizational_unit_id, day_rating_id_or_date, body, opts = {})
  update_organizational_unit_day_rating_with_http_info(, organizational_unit_id, day_rating_id_or_date, body, opts)
  nil
end

#update_organizational_unit_day_rating_with_http_info(korona_account_id, organizational_unit_id, day_rating_id_or_date, body, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>

updates the day rating by its id or date

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

  • day_rating_id_or_date

    the id or date (YYYY-MM-DD) of the day rating

  • body

    the properties to update of the day rating

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

    the optional parameters

Returns:

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

    nil, response status code and response headers



705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
# File 'lib/korona_client/api/organizational_units_api.rb', line 705

def update_organizational_unit_day_rating_with_http_info(, organizational_unit_id, day_rating_id_or_date, body, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: OrganizationalUnitsApi.update_organizational_unit_day_rating ...'
  end
  # verify the required parameter 'korona_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling OrganizationalUnitsApi.update_organizational_unit_day_rating"
  end
  # verify the required parameter 'organizational_unit_id' is set
  if @api_client.config.client_side_validation && organizational_unit_id.nil?
    fail ArgumentError, "Missing the required parameter 'organizational_unit_id' when calling OrganizationalUnitsApi.update_organizational_unit_day_rating"
  end
  # verify the required parameter 'day_rating_id_or_date' is set
  if @api_client.config.client_side_validation && day_rating_id_or_date.nil?
    fail ArgumentError, "Missing the required parameter 'day_rating_id_or_date' when calling OrganizationalUnitsApi.update_organizational_unit_day_rating"
  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 OrganizationalUnitsApi.update_organizational_unit_day_rating"
  end
  # resource path
  local_var_path = '/accounts/{koronaAccountId}/organizationalUnits/{organizationalUnitId}/dayRatings/{dayRatingIdOrDate}'.sub('{' + 'koronaAccountId' + '}', .to_s).sub('{' + 'organizationalUnitId' + '}', organizational_unit_id.to_s).sub('{' + 'dayRatingIdOrDate' + '}', day_rating_id_or_date.to_s)

  # query parameters
  query_params = {}

  # header parameters
  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 = {}

  # http body (model)
  post_body = @api_client.object_to_http_body(body)
  auth_names = ['basicAuth']
  data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: OrganizationalUnitsApi#update_organizational_unit_day_rating\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#update_organizational_unit_day_ratings(korona_account_id, organizational_unit_id, body, opts = {}) ⇒ Array<AddOrUpdateResult>

updates a batch of day ratings

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

  • body

    an array of new day ratings

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

    the optional parameters

Returns:



762
763
764
765
# File 'lib/korona_client/api/organizational_units_api.rb', line 762

def update_organizational_unit_day_ratings(, organizational_unit_id, body, opts = {})
  data, _status_code, _headers = update_organizational_unit_day_ratings_with_http_info(, organizational_unit_id, body, opts)
  data
end

#update_organizational_unit_day_ratings_with_http_info(korona_account_id, organizational_unit_id, body, opts = {}) ⇒ Array<(Array<AddOrUpdateResult>, Fixnum, Hash)>

updates a batch of day ratings

Parameters:

  • korona_account_id

    account id of the KORONA.cloud account

  • organizational_unit_id

    id of the related object (important: id should match the uuid-format)

  • body

    an array of new day ratings

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

    the optional parameters

Returns:

  • (Array<(Array<AddOrUpdateResult>, Fixnum, Hash)>)

    Array<AddOrUpdateResult> data, response status code and response headers



774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
# File 'lib/korona_client/api/organizational_units_api.rb', line 774

def update_organizational_unit_day_ratings_with_http_info(, organizational_unit_id, body, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: OrganizationalUnitsApi.update_organizational_unit_day_ratings ...'
  end
  # verify the required parameter 'korona_account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'korona_account_id' when calling OrganizationalUnitsApi.update_organizational_unit_day_ratings"
  end
  # verify the required parameter 'organizational_unit_id' is set
  if @api_client.config.client_side_validation && organizational_unit_id.nil?
    fail ArgumentError, "Missing the required parameter 'organizational_unit_id' when calling OrganizationalUnitsApi.update_organizational_unit_day_ratings"
  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 OrganizationalUnitsApi.update_organizational_unit_day_ratings"
  end
  # resource path
  local_var_path = '/accounts/{koronaAccountId}/organizationalUnits/{organizationalUnitId}/dayRatings'.sub('{' + 'koronaAccountId' + '}', .to_s).sub('{' + 'organizationalUnitId' + '}', organizational_unit_id.to_s)

  # query parameters
  query_params = {}

  # header parameters
  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 = {}

  # http body (model)
  post_body = @api_client.object_to_http_body(body)
  auth_names = ['basicAuth']
  data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'Array<AddOrUpdateResult>')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: OrganizationalUnitsApi#update_organizational_unit_day_ratings\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end