Class: PostFinanceCheckout::InvoiceReimbursementService
- Inherits:
-
Object
- Object
- PostFinanceCheckout::InvoiceReimbursementService
- Defined in:
- lib/postfinancecheckout-ruby-sdk/api/invoice_reimbursement_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)>
Integer data, response status code and response headers.
-
#initialize(api_client = ApiClient.default) ⇒ InvoiceReimbursementService
constructor
A new instance of InvoiceReimbursementService.
-
#read(space_id, id, opts = {}) ⇒ InvoiceReimbursement
Read Reads the entity with the given ‘id’ and returns it.
-
#read_with_http_info(space_id, id, opts = {}) ⇒ Array<(InvoiceReimbursement, Fixnum, Hash)>
InvoiceReimbursement data, response status code and response headers.
-
#search(space_id, query, opts = {}) ⇒ Array<InvoiceReimbursementWithRefundReference>
Search Searches for the entities as specified by the given query.
-
#search_with_http_info(space_id, query, opts = {}) ⇒ Array<(Array<InvoiceReimbursementWithRefundReference>, Fixnum, Hash)>
Array<InvoiceReimbursementWithRefundReference> data, response status code and response headers.
-
#update_connector(space_id, id, payment_connector_configuration_id, opts = {}) ⇒ nil
Update payment connector configuration Updates payment connector configuration for reimbursement which is in manual review.
-
#update_connector_with_http_info(space_id, id, payment_connector_configuration_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Nil, response status code and response headers.
-
#update_iban(space_id, id, opts = {}) ⇒ nil
Update IBAN Updates recipient and/or sender IBAN for reimbursement which is in manual review.
-
#update_iban_with_http_info(space_id, id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Nil, response status code and response headers.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ InvoiceReimbursementService
Returns a new instance of InvoiceReimbursementService.
24 25 26 |
# File 'lib/postfinancecheckout-ruby-sdk/api/invoice_reimbursement_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/invoice_reimbursement_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/postfinancecheckout-ruby-sdk/api/invoice_reimbursement_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)>
Returns Integer 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 |
# File 'lib/postfinancecheckout-ruby-sdk/api/invoice_reimbursement_service_api.rb', line 46 def count_with_http_info(space_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: InvoiceReimbursementService.count ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling InvoiceReimbursementService.count" if space_id.nil? # resource path local_var_path = "/invoice-reimbursement-service/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: InvoiceReimbursementService#count\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#read(space_id, id, opts = {}) ⇒ InvoiceReimbursement
Read Reads the entity with the given ‘id’ and returns it.
99 100 101 102 |
# File 'lib/postfinancecheckout-ruby-sdk/api/invoice_reimbursement_service_api.rb', line 99 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<(InvoiceReimbursement, Fixnum, Hash)>
Returns InvoiceReimbursement data, response status code and response headers.
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 153 154 155 156 157 158 159 |
# File 'lib/postfinancecheckout-ruby-sdk/api/invoice_reimbursement_service_api.rb', line 111 def read_with_http_info(space_id, id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: InvoiceReimbursementService.read ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling InvoiceReimbursementService.read" if space_id.nil? # verify the required parameter 'id' is set fail ArgumentError, "Missing the required parameter 'id' when calling InvoiceReimbursementService.read" if id.nil? # resource path local_var_path = "/invoice-reimbursement-service/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 => 'InvoiceReimbursement') if @api_client.config.debugging @api_client.config.logger.debug "API called: InvoiceReimbursementService#read\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#search(space_id, query, opts = {}) ⇒ Array<InvoiceReimbursementWithRefundReference>
Search Searches for the entities as specified by the given query.
167 168 169 170 |
# File 'lib/postfinancecheckout-ruby-sdk/api/invoice_reimbursement_service_api.rb', line 167 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<InvoiceReimbursementWithRefundReference>, Fixnum, Hash)>
Returns Array<InvoiceReimbursementWithRefundReference> data, response status code and response headers.
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
# File 'lib/postfinancecheckout-ruby-sdk/api/invoice_reimbursement_service_api.rb', line 179 def search_with_http_info(space_id, query, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: InvoiceReimbursementService.search ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling InvoiceReimbursementService.search" if space_id.nil? # verify the required parameter 'query' is set fail ArgumentError, "Missing the required parameter 'query' when calling InvoiceReimbursementService.search" if query.nil? # resource path local_var_path = "/invoice-reimbursement-service/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<InvoiceReimbursementWithRefundReference>') if @api_client.config.debugging @api_client.config.logger.debug "API called: InvoiceReimbursementService#search\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_connector(space_id, id, payment_connector_configuration_id, opts = {}) ⇒ nil
Update payment connector configuration Updates payment connector configuration for reimbursement which is in manual review.
235 236 237 238 |
# File 'lib/postfinancecheckout-ruby-sdk/api/invoice_reimbursement_service_api.rb', line 235 def update_connector(space_id, id, payment_connector_configuration_id, opts = {}) update_connector_with_http_info(space_id, id, payment_connector_configuration_id, opts) return nil end |
#update_connector_with_http_info(space_id, id, payment_connector_configuration_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Returns nil, response status code and response headers.
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 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 |
# File 'lib/postfinancecheckout-ruby-sdk/api/invoice_reimbursement_service_api.rb', line 248 def update_connector_with_http_info(space_id, id, payment_connector_configuration_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: InvoiceReimbursementService.update_connector ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling InvoiceReimbursementService.update_connector" if space_id.nil? # verify the required parameter 'id' is set fail ArgumentError, "Missing the required parameter 'id' when calling InvoiceReimbursementService.update_connector" if id.nil? # verify the required parameter 'payment_connector_configuration_id' is set fail ArgumentError, "Missing the required parameter 'payment_connector_configuration_id' when calling InvoiceReimbursementService.update_connector" if payment_connector_configuration_id.nil? # resource path local_var_path = "/invoice-reimbursement-service/update-connector".sub('{format}','json') # query parameters query_params = {} query_params[:'spaceId'] = space_id query_params[:'id'] = id query_params[:'paymentConnectorConfigurationId'] = payment_connector_configuration_id # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = [] 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) if @api_client.config.debugging @api_client.config.logger.debug "API called: InvoiceReimbursementService#update_connector\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_iban(space_id, id, opts = {}) ⇒ nil
Update IBAN Updates recipient and/or sender IBAN for reimbursement which is in manual review.
308 309 310 311 |
# File 'lib/postfinancecheckout-ruby-sdk/api/invoice_reimbursement_service_api.rb', line 308 def update_iban(space_id, id, opts = {}) update_iban_with_http_info(space_id, id, opts) return nil end |
#update_iban_with_http_info(space_id, id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Returns nil, response status code and response headers.
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 362 363 364 365 366 367 368 369 370 371 |
# File 'lib/postfinancecheckout-ruby-sdk/api/invoice_reimbursement_service_api.rb', line 322 def update_iban_with_http_info(space_id, id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: InvoiceReimbursementService.update_iban ..." end # verify the required parameter 'space_id' is set fail ArgumentError, "Missing the required parameter 'space_id' when calling InvoiceReimbursementService.update_iban" if space_id.nil? # verify the required parameter 'id' is set fail ArgumentError, "Missing the required parameter 'id' when calling InvoiceReimbursementService.update_iban" if id.nil? # resource path local_var_path = "/invoice-reimbursement-service/update-iban".sub('{format}','json') # query parameters query_params = {} query_params[:'spaceId'] = space_id query_params[:'id'] = id query_params[:'recipientIban'] = opts[:'recipient_iban'] if !opts[:'recipient_iban'].nil? query_params[:'senderIban'] = opts[:'sender_iban'] if !opts[:'sender_iban'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) local_header_accept = [] 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) if @api_client.config.debugging @api_client.config.logger.debug "API called: InvoiceReimbursementService#update_iban\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |