Class: PostFinanceCheckout::TransactionCompletionService
- Inherits:
-
Object
- Object
- PostFinanceCheckout::TransactionCompletionService
- Defined in:
- lib/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#complete_offline(space_id, id, opts = {}) ⇒ TransactionCompletion
completeOffline This operation completes the transaction offline.
-
#complete_offline_with_http_info(space_id, id, opts = {}) ⇒ Array<(TransactionCompletion, Fixnum, Hash)>
TransactionCompletion data, response status code and response headers.
-
#complete_online(space_id, id, opts = {}) ⇒ TransactionCompletion
completeOnline This operation completes the transaction online.
-
#complete_online_with_http_info(space_id, id, opts = {}) ⇒ Array<(TransactionCompletion, Fixnum, Hash)>
TransactionCompletion data, response status code and response headers.
-
#complete_partially_offline(space_id, completion, opts = {}) ⇒ TransactionCompletion
completePartiallyOffline This operation can be used to partially complete the transaction offline.
-
#complete_partially_offline_with_http_info(space_id, completion, opts = {}) ⇒ Array<(TransactionCompletion, Fixnum, Hash)>
TransactionCompletion data, response status code and response headers.
-
#complete_partially_online(space_id, completion, opts = {}) ⇒ TransactionCompletion
completePartiallyOnline This operation can be used to partially complete the transaction online.
-
#complete_partially_online_with_http_info(space_id, completion, opts = {}) ⇒ Array<(TransactionCompletion, Fixnum, Hash)>
TransactionCompletion data, response status code and response headers.
-
#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)>
Integer data, response status code and response headers.
-
#initialize(api_client = ApiClient.default) ⇒ TransactionCompletionService
constructor
A new instance of TransactionCompletionService.
-
#read(space_id, id, opts = {}) ⇒ TransactionCompletion
Read Reads the entity with the given ‘id’ and returns it.
-
#read_with_http_info(space_id, id, opts = {}) ⇒ Array<(TransactionCompletion, Fixnum, Hash)>
TransactionCompletion data, response status code and response headers.
-
#search(space_id, query, opts = {}) ⇒ Array<TransactionCompletion>
Search Searches for the entities as specified by the given query.
-
#search_with_http_info(space_id, query, opts = {}) ⇒ Array<(Array<TransactionCompletion>, Fixnum, Hash)>
Array<TransactionCompletion> data, response status code and response headers.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ TransactionCompletionService
Returns a new instance of TransactionCompletionService.
24 25 26 |
# File 'lib/postfinancecheckout-ruby-sdk/api/transaction_completion_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/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb', line 22 def api_client @api_client end |
Instance Method Details
#complete_offline(space_id, id, opts = {}) ⇒ TransactionCompletion
completeOffline This operation completes the transaction offline. The completion is not forwarded to the processor. This implies the processor does not do anything. This method is only here to fix manually the transaction state.
34 35 36 37 |
# File 'lib/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb', line 34 def complete_offline(space_id, id, opts = {}) data, _status_code, _headers = complete_offline_with_http_info(space_id, id, opts) return data end |
#complete_offline_with_http_info(space_id, id, opts = {}) ⇒ Array<(TransactionCompletion, Fixnum, Hash)>
Returns TransactionCompletion data, response status code and response headers.
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 88 89 90 91 92 93 94 |
# File 'lib/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb', line 46 def complete_offline_with_http_info(space_id, id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: TransactionCompletionService.complete_offline ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling TransactionCompletionService.complete_offline" if space_id.nil? # verify the required parameter 'id' is set fail ArgumentError, "Missing the required parameter 'id' when calling TransactionCompletionService.complete_offline" if id.nil? # resource path local_var_path = "/transaction-completion/completeOffline".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 = {} # connection timeout timeout = @api_client.get_connection_timeout() # http body (model) post_body = nil 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, :timeout => timeout, :auth_names => auth_names, :return_type => 'TransactionCompletion') if @api_client.config.debugging @api_client.config.logger.debug "API called: TransactionCompletionService#complete_offline\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#complete_online(space_id, id, opts = {}) ⇒ TransactionCompletion
completeOnline This operation completes the transaction online. The completion is forwarded to the processor. This implies that the processor may take some actions based on the completion.
102 103 104 105 |
# File 'lib/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb', line 102 def complete_online(space_id, id, opts = {}) data, _status_code, _headers = complete_online_with_http_info(space_id, id, opts) return data end |
#complete_online_with_http_info(space_id, id, opts = {}) ⇒ Array<(TransactionCompletion, Fixnum, Hash)>
Returns TransactionCompletion data, response status code and response headers.
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 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb', line 114 def complete_online_with_http_info(space_id, id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: TransactionCompletionService.complete_online ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling TransactionCompletionService.complete_online" if space_id.nil? # verify the required parameter 'id' is set fail ArgumentError, "Missing the required parameter 'id' when calling TransactionCompletionService.complete_online" if id.nil? # resource path local_var_path = "/transaction-completion/completeOnline".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 = {} # connection timeout timeout = @api_client.get_connection_timeout() # http body (model) post_body = nil 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, :timeout => timeout, :auth_names => auth_names, :return_type => 'TransactionCompletion') if @api_client.config.debugging @api_client.config.logger.debug "API called: TransactionCompletionService#complete_online\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#complete_partially_offline(space_id, completion, opts = {}) ⇒ TransactionCompletion
completePartiallyOffline This operation can be used to partially complete the transaction offline. The completion is not forwarded to the processor. This implies the processor does not do anything. This method is only here to fix manually the transaction state.
170 171 172 173 |
# File 'lib/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb', line 170 def complete_partially_offline(space_id, completion, opts = {}) data, _status_code, _headers = complete_partially_offline_with_http_info(space_id, completion, opts) return data end |
#complete_partially_offline_with_http_info(space_id, completion, opts = {}) ⇒ Array<(TransactionCompletion, Fixnum, Hash)>
Returns TransactionCompletion data, response status code and response headers.
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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'lib/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb', line 182 def complete_partially_offline_with_http_info(space_id, completion, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: TransactionCompletionService.complete_partially_offline ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling TransactionCompletionService.complete_partially_offline" if space_id.nil? # verify the required parameter 'completion' is set fail ArgumentError, "Missing the required parameter 'completion' when calling TransactionCompletionService.complete_partially_offline" if completion.nil? # resource path local_var_path = "/transaction-completion/completePartiallyOffline".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 = {} # connection timeout timeout = @api_client.get_connection_timeout() # http body (model) post_body = @api_client.object_to_http_body(completion) 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, :timeout => timeout, :auth_names => auth_names, :return_type => 'TransactionCompletion') if @api_client.config.debugging @api_client.config.logger.debug "API called: TransactionCompletionService#complete_partially_offline\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#complete_partially_online(space_id, completion, opts = {}) ⇒ TransactionCompletion
completePartiallyOnline This operation can be used to partially complete the transaction online. The completion is forwarded to the processor. This implies that the processor may take some actions based on the completion.
237 238 239 240 |
# File 'lib/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb', line 237 def complete_partially_online(space_id, completion, opts = {}) data, _status_code, _headers = complete_partially_online_with_http_info(space_id, completion, opts) return data end |
#complete_partially_online_with_http_info(space_id, completion, opts = {}) ⇒ Array<(TransactionCompletion, Fixnum, Hash)>
Returns TransactionCompletion data, response status code and response headers.
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 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
# File 'lib/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb', line 249 def complete_partially_online_with_http_info(space_id, completion, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: TransactionCompletionService.complete_partially_online ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling TransactionCompletionService.complete_partially_online" if space_id.nil? # verify the required parameter 'completion' is set fail ArgumentError, "Missing the required parameter 'completion' when calling TransactionCompletionService.complete_partially_online" if completion.nil? # resource path local_var_path = "/transaction-completion/completePartiallyOnline".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 = {} # connection timeout timeout = @api_client.get_connection_timeout() # http body (model) post_body = @api_client.object_to_http_body(completion) 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, :timeout => timeout, :auth_names => auth_names, :return_type => 'TransactionCompletion') if @api_client.config.debugging @api_client.config.logger.debug "API called: TransactionCompletionService#complete_partially_online\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#count(space_id, opts = {}) ⇒ Integer
Count Counts the number of items in the database as restricted by the given filter.
304 305 306 307 |
# File 'lib/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb', line 304 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)>
Returns Integer data, response status code and response headers.
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 348 349 350 351 352 353 354 355 356 357 358 359 360 361 |
# File 'lib/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb', line 316 def count_with_http_info(space_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: TransactionCompletionService.count ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling TransactionCompletionService.count" if space_id.nil? # resource path local_var_path = "/transaction-completion/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 = {} # connection timeout timeout = @api_client.get_connection_timeout() # 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, :timeout => timeout, :auth_names => auth_names, :return_type => 'Integer') if @api_client.config.debugging @api_client.config.logger.debug "API called: TransactionCompletionService#count\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#read(space_id, id, opts = {}) ⇒ TransactionCompletion
Read Reads the entity with the given ‘id’ and returns it.
369 370 371 372 |
# File 'lib/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb', line 369 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<(TransactionCompletion, Fixnum, Hash)>
Returns TransactionCompletion data, response status code and response headers.
381 382 383 384 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 |
# File 'lib/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb', line 381 def read_with_http_info(space_id, id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: TransactionCompletionService.read ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling TransactionCompletionService.read" if space_id.nil? # verify the required parameter 'id' is set fail ArgumentError, "Missing the required parameter 'id' when calling TransactionCompletionService.read" if id.nil? # resource path local_var_path = "/transaction-completion/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 = {} # connection timeout timeout = @api_client.get_connection_timeout() # 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, :timeout => timeout, :auth_names => auth_names, :return_type => 'TransactionCompletion') if @api_client.config.debugging @api_client.config.logger.debug "API called: TransactionCompletionService#read\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#search(space_id, query, opts = {}) ⇒ Array<TransactionCompletion>
Search Searches for the entities as specified by the given query.
437 438 439 440 |
# File 'lib/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb', line 437 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<TransactionCompletion>, Fixnum, Hash)>
Returns Array<TransactionCompletion> data, response status code and response headers.
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 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 |
# File 'lib/postfinancecheckout-ruby-sdk/api/transaction_completion_service_api.rb', line 449 def search_with_http_info(space_id, query, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: TransactionCompletionService.search ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling TransactionCompletionService.search" if space_id.nil? # verify the required parameter 'query' is set fail ArgumentError, "Missing the required parameter 'query' when calling TransactionCompletionService.search" if query.nil? # resource path local_var_path = "/transaction-completion/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 = {} # connection timeout timeout = @api_client.get_connection_timeout() # 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, :timeout => timeout, :auth_names => auth_names, :return_type => 'Array<TransactionCompletion>') if @api_client.config.debugging @api_client.config.logger.debug "API called: TransactionCompletionService#search\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |