Class: WhiteLabelMachineName::CustomerCommentService
- Inherits:
-
Object
- Object
- WhiteLabelMachineName::CustomerCommentService
- Defined in:
- lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#count(space_id, opts = {}) ⇒ Integer
Count Counts the number of items in the database as restricted by the given filter.
-
#count_with_http_info(space_id, opts = {}) ⇒ Array<(Integer, Fixnum, Hash)>
Count Counts the number of items in the database as restricted by the given filter.
-
#create(space_id, entity, opts = {}) ⇒ CustomerComment
Create Creates the entity with the given properties.
-
#create_with_http_info(space_id, entity, opts = {}) ⇒ Array<(CustomerComment, Fixnum, Hash)>
Create Creates the entity with the given properties.
-
#delete(space_id, id, opts = {}) ⇒ nil
Delete Deletes the entity with the given id.
-
#delete_with_http_info(space_id, id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Delete Deletes the entity with the given id.
-
#initialize(api_client = ApiClient.default) ⇒ CustomerCommentService
constructor
A new instance of CustomerCommentService.
-
#pin_comment(space_id, id, opts = {}) ⇒ nil
pinComment.
-
#pin_comment_with_http_info(space_id, id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
pinComment.
-
#read(space_id, id, opts = {}) ⇒ CustomerComment
Read Reads the entity with the given ‘id’ and returns it.
-
#read_with_http_info(space_id, id, opts = {}) ⇒ Array<(CustomerComment, Fixnum, Hash)>
Read Reads the entity with the given 'id' and returns it.
-
#search(space_id, query, opts = {}) ⇒ Array<CustomerComment>
Search Searches for the entities as specified by the given query.
-
#search_with_http_info(space_id, query, opts = {}) ⇒ Array<(Array<CustomerComment>, Fixnum, Hash)>
Search Searches for the entities as specified by the given query.
-
#unpin_comment(space_id, id, opts = {}) ⇒ nil
unpinComment.
-
#unpin_comment_with_http_info(space_id, id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
unpinComment.
-
#update(space_id, entity, opts = {}) ⇒ CustomerComment
Update This updates the entity with the given properties.
-
#update_with_http_info(space_id, entity, opts = {}) ⇒ Array<(CustomerComment, Fixnum, Hash)>
Update This updates the entity with the given properties.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ CustomerCommentService
Returns a new instance of CustomerCommentService.
24 25 26 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 24 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
22 23 24 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 22 def api_client @api_client end |
Instance Method Details
#count(space_id, opts = {}) ⇒ Integer
Count Counts the number of items in the database as restricted by the given filter.
34 35 36 37 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 34 def count(space_id, opts = {}) data, _status_code, _headers = count_with_http_info(space_id, opts) return data end |
#count_with_http_info(space_id, opts = {}) ⇒ Array<(Integer, Fixnum, Hash)>
Count Counts the number of items in the database as restricted by the given filter.
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 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 45 def count_with_http_info(space_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: CustomerCommentService.count ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling CustomerCommentService.count" if space_id.nil? # resource path local_var_path = "/customer-comment/count".sub('{format}','json') # query parameters query_params = {} query_params[:'spaceId'] = space_id # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = ['application/json;charset=utf-8'] local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result # HTTP header 'Content-Type' local_header_content_type = ['application/json;charset=utf-8'] header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(opts[:'filter']) auth_names = [] 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 => 'Integer') if @api_client.config.debugging @api_client.config.logger.debug "API called: CustomerCommentService#count\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#create(space_id, entity, opts = {}) ⇒ CustomerComment
Create Creates the entity with the given properties.
94 95 96 97 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 94 def create(space_id, entity, opts = {}) data, _status_code, _headers = create_with_http_info(space_id, entity, opts) return data end |
#create_with_http_info(space_id, entity, opts = {}) ⇒ Array<(CustomerComment, Fixnum, Hash)>
Create Creates the entity with the given properties.
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 146 147 148 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 105 def create_with_http_info(space_id, entity, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: CustomerCommentService.create ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling CustomerCommentService.create" if space_id.nil? # verify the required parameter 'entity' is set fail ArgumentError, "Missing the required parameter 'entity' when calling CustomerCommentService.create" if entity.nil? # resource path local_var_path = "/customer-comment/create".sub('{format}','json') # query parameters query_params = {} query_params[:'spaceId'] = space_id # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = ['application/json;charset=utf-8'] local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result # HTTP header 'Content-Type' local_header_content_type = ['application/json;charset=utf-8'] header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(entity) auth_names = [] 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 => 'CustomerComment') if @api_client.config.debugging @api_client.config.logger.debug "API called: CustomerCommentService#create\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#delete(space_id, id, opts = {}) ⇒ nil
Delete Deletes the entity with the given id.
156 157 158 159 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 156 def delete(space_id, id, opts = {}) delete_with_http_info(space_id, id, opts) return nil end |
#delete_with_http_info(space_id, id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Delete Deletes the entity with the given id.
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 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 167 def delete_with_http_info(space_id, id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: CustomerCommentService.delete ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling CustomerCommentService.delete" if space_id.nil? # verify the required parameter 'id' is set fail ArgumentError, "Missing the required parameter 'id' when calling CustomerCommentService.delete" if id.nil? # resource path local_var_path = "/customer-comment/delete".sub('{format}','json') # query parameters query_params = {} query_params[:'spaceId'] = space_id # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = ['application/json;charset=utf-8'] local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result # HTTP header 'Content-Type' local_header_content_type = ['application/json;charset=utf-8'] header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(id) auth_names = [] 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) if @api_client.config.debugging @api_client.config.logger.debug "API called: CustomerCommentService#delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#pin_comment(space_id, id, opts = {}) ⇒ nil
pinComment
217 218 219 220 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 217 def pin_comment(space_id, id, opts = {}) pin_comment_with_http_info(space_id, id, opts) return nil end |
#pin_comment_with_http_info(space_id, id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
pinComment
228 229 230 231 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 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 228 def pin_comment_with_http_info(space_id, id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: CustomerCommentService.pin_comment ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling CustomerCommentService.pin_comment" if space_id.nil? # verify the required parameter 'id' is set fail ArgumentError, "Missing the required parameter 'id' when calling CustomerCommentService.pin_comment" if id.nil? # resource path local_var_path = "/customer-comment/pin-comment".sub('{format}','json') # query parameters query_params = {} query_params[:'spaceId'] = space_id query_params[:'id'] = id # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = ['application/json;charset=utf-8'] local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result # HTTP header 'Content-Type' local_header_content_type = ['*/*'] header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] 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) if @api_client.config.debugging @api_client.config.logger.debug "API called: CustomerCommentService#pin_comment\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#read(space_id, id, opts = {}) ⇒ CustomerComment
Read Reads the entity with the given ‘id’ and returns it.
279 280 281 282 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 279 def read(space_id, id, opts = {}) data, _status_code, _headers = read_with_http_info(space_id, id, opts) return data end |
#read_with_http_info(space_id, id, opts = {}) ⇒ Array<(CustomerComment, Fixnum, Hash)>
Read Reads the entity with the given 'id' and returns it.
290 291 292 293 294 295 296 297 298 299 300 301 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 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 290 def read_with_http_info(space_id, id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: CustomerCommentService.read ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling CustomerCommentService.read" if space_id.nil? # verify the required parameter 'id' is set fail ArgumentError, "Missing the required parameter 'id' when calling CustomerCommentService.read" if id.nil? # resource path local_var_path = "/customer-comment/read".sub('{format}','json') # query parameters query_params = {} query_params[:'spaceId'] = space_id query_params[:'id'] = id # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = ['application/json;charset=utf-8'] local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result # HTTP header 'Content-Type' local_header_content_type = ['*/*'] header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] 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 => 'CustomerComment') if @api_client.config.debugging @api_client.config.logger.debug "API called: CustomerCommentService#read\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#search(space_id, query, opts = {}) ⇒ Array<CustomerComment>
Search Searches for the entities as specified by the given query.
342 343 344 345 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 342 def search(space_id, query, opts = {}) data, _status_code, _headers = search_with_http_info(space_id, query, opts) return data end |
#search_with_http_info(space_id, query, opts = {}) ⇒ Array<(Array<CustomerComment>, Fixnum, Hash)>
Search Searches for the entities as specified by the given query.
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 353 def search_with_http_info(space_id, query, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: CustomerCommentService.search ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling CustomerCommentService.search" if space_id.nil? # verify the required parameter 'query' is set fail ArgumentError, "Missing the required parameter 'query' when calling CustomerCommentService.search" if query.nil? # resource path local_var_path = "/customer-comment/search".sub('{format}','json') # query parameters query_params = {} query_params[:'spaceId'] = space_id # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = ['application/json;charset=utf-8'] local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result # HTTP header 'Content-Type' local_header_content_type = ['application/json;charset=utf-8'] header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(query) auth_names = [] 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<CustomerComment>') if @api_client.config.debugging @api_client.config.logger.debug "API called: CustomerCommentService#search\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#unpin_comment(space_id, id, opts = {}) ⇒ nil
unpinComment
404 405 406 407 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 404 def unpin_comment(space_id, id, opts = {}) unpin_comment_with_http_info(space_id, id, opts) return nil end |
#unpin_comment_with_http_info(space_id, id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
unpinComment
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 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 415 def unpin_comment_with_http_info(space_id, id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: CustomerCommentService.unpin_comment ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling CustomerCommentService.unpin_comment" if space_id.nil? # verify the required parameter 'id' is set fail ArgumentError, "Missing the required parameter 'id' when calling CustomerCommentService.unpin_comment" if id.nil? # resource path local_var_path = "/customer-comment/unpin-comment".sub('{format}','json') # query parameters query_params = {} query_params[:'spaceId'] = space_id query_params[:'id'] = id # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = ['application/json;charset=utf-8'] local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result # HTTP header 'Content-Type' local_header_content_type = ['*/*'] header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] 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) if @api_client.config.debugging @api_client.config.logger.debug "API called: CustomerCommentService#unpin_comment\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update(space_id, entity, opts = {}) ⇒ CustomerComment
Update This updates the entity with the given properties. Only those properties which should be updated can be provided. The ‘id’ and ‘version’ are required to identify the entity.
466 467 468 469 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 466 def update(space_id, entity, opts = {}) data, _status_code, _headers = update_with_http_info(space_id, entity, opts) return data end |
#update_with_http_info(space_id, entity, opts = {}) ⇒ Array<(CustomerComment, Fixnum, Hash)>
Update This updates the entity with the given properties. Only those properties which should be updated can be provided. The 'id' and 'version' are required to identify the entity.
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 513 514 515 516 517 518 519 520 |
# File 'lib/whitelabelmachinename-ruby-sdk/api/customer_comment_service_api.rb', line 477 def update_with_http_info(space_id, entity, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: CustomerCommentService.update ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling CustomerCommentService.update" if space_id.nil? # verify the required parameter 'entity' is set fail ArgumentError, "Missing the required parameter 'entity' when calling CustomerCommentService.update" if entity.nil? # resource path local_var_path = "/customer-comment/update".sub('{format}','json') # query parameters query_params = {} query_params[:'spaceId'] = space_id # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = ['application/json;charset=utf-8'] local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result # HTTP header 'Content-Type' local_header_content_type = ['application/json;charset=utf-8'] header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(entity) auth_names = [] 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 => 'CustomerComment') if @api_client.config.debugging @api_client.config.logger.debug "API called: CustomerCommentService#update\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |