Class: OpenapiClient::PaymentTokenApi
- Inherits:
-
Object
- Object
- OpenapiClient::PaymentTokenApi
- Defined in:
- lib/openapi_client/api/payment_token_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#create_payment_token(content_type, client_request_id, api_key, timestamp, payment_tokenization_request, opts = {}) ⇒ PaymentTokenizationResponse
Create a payment token from a payment card.
-
#create_payment_token_with_http_info(content_type, client_request_id, api_key, timestamp, payment_tokenization_request, opts = {}) ⇒ Array<(PaymentTokenizationResponse, Integer, Hash)>
Create a payment token from a payment card.
-
#delete_payment_token(content_type, client_request_id, api_key, timestamp, token_id, opts = {}) ⇒ PaymentTokenizationResponse
Delete a payment token.
-
#delete_payment_token_with_http_info(content_type, client_request_id, api_key, timestamp, token_id, opts = {}) ⇒ Array<(PaymentTokenizationResponse, Integer, Hash)>
Delete a payment token.
-
#initialize(api_client = ApiClient.default) ⇒ PaymentTokenApi
constructor
A new instance of PaymentTokenApi.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ PaymentTokenApi
Returns a new instance of PaymentTokenApi.
19 20 21 |
# File 'lib/openapi_client/api/payment_token_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/openapi_client/api/payment_token_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#create_payment_token(content_type, client_request_id, api_key, timestamp, payment_tokenization_request, opts = {}) ⇒ PaymentTokenizationResponse
Create a payment token from a payment card. Use this to create a payment token from a payment card.
34 35 36 37 |
# File 'lib/openapi_client/api/payment_token_api.rb', line 34 def create_payment_token(content_type, client_request_id, api_key, , payment_tokenization_request, opts = {}) data, _status_code, _headers = create_payment_token_with_http_info(content_type, client_request_id, api_key, , payment_tokenization_request, opts) data end |
#create_payment_token_with_http_info(content_type, client_request_id, api_key, timestamp, payment_tokenization_request, opts = {}) ⇒ Array<(PaymentTokenizationResponse, Integer, Hash)>
Create a payment token from a payment card. Use this to create a payment token from a payment card.
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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
# File 'lib/openapi_client/api/payment_token_api.rb', line 51 def create_payment_token_with_http_info(content_type, client_request_id, api_key, , payment_tokenization_request, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: PaymentTokenApi.create_payment_token ...' end # verify the required parameter 'content_type' is set if @api_client.config.client_side_validation && content_type.nil? fail ArgumentError, "Missing the required parameter 'content_type' when calling PaymentTokenApi.create_payment_token" end # verify enum value allowable_values = ["application/json"] if @api_client.config.client_side_validation && !allowable_values.include?(content_type) fail ArgumentError, "invalid value for \"content_type\", must be one of #{allowable_values}" end # verify the required parameter 'client_request_id' is set if @api_client.config.client_side_validation && client_request_id.nil? fail ArgumentError, "Missing the required parameter 'client_request_id' when calling PaymentTokenApi.create_payment_token" end # verify the required parameter 'api_key' is set if @api_client.config.client_side_validation && api_key.nil? fail ArgumentError, "Missing the required parameter 'api_key' when calling PaymentTokenApi.create_payment_token" end # verify the required parameter 'timestamp' is set if @api_client.config.client_side_validation && .nil? fail ArgumentError, "Missing the required parameter 'timestamp' when calling PaymentTokenApi.create_payment_token" end # verify the required parameter 'payment_tokenization_request' is set if @api_client.config.client_side_validation && payment_tokenization_request.nil? fail ArgumentError, "Missing the required parameter 'payment_tokenization_request' when calling PaymentTokenApi.create_payment_token" end # resource path local_var_path = '/payment-tokens' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' # header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # header_params[:'Content-Type'] = content_type header_params[:'Client-Request-Id'] = client_request_id header_params[:'Api-Key'] = api_key header_params[:'Timestamp'] = header_params[:'Message-Signature'] = opts[:'message_signature'] if !opts[:'message_signature'].nil? header_params[:'Authorization'] = opts[:'authorization'] if !opts[:'authorization'].nil? header_params[:'Region'] = opts[:'region'] if !opts[:'region'].nil? # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] || @api_client.object_to_http_body(payment_tokenization_request) # return_type return_type = opts[:return_type] || 'PaymentTokenizationResponse' # auth_names auth_names = opts[:auth_names] || [] = opts.merge( :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'PaymentTokenizationResponse', :default_error_type => 'ErrorResponse', :error_type => 'PaymentTokenizationErrorResponse') data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: PaymentTokenApi#create_payment_token\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#delete_payment_token(content_type, client_request_id, api_key, timestamp, token_id, opts = {}) ⇒ PaymentTokenizationResponse
Delete a payment token. Use this to delete a payment token.
142 143 144 145 |
# File 'lib/openapi_client/api/payment_token_api.rb', line 142 def delete_payment_token(content_type, client_request_id, api_key, , token_id, opts = {}) data, _status_code, _headers = delete_payment_token_with_http_info(content_type, client_request_id, api_key, , token_id, opts) data end |
#delete_payment_token_with_http_info(content_type, client_request_id, api_key, timestamp, token_id, opts = {}) ⇒ Array<(PaymentTokenizationResponse, Integer, Hash)>
Delete a payment token. Use this to delete a payment token.
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/openapi_client/api/payment_token_api.rb', line 160 def delete_payment_token_with_http_info(content_type, client_request_id, api_key, , token_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: PaymentTokenApi.delete_payment_token ...' end # verify the required parameter 'content_type' is set if @api_client.config.client_side_validation && content_type.nil? fail ArgumentError, "Missing the required parameter 'content_type' when calling PaymentTokenApi.delete_payment_token" end # verify enum value allowable_values = ["application/json"] if @api_client.config.client_side_validation && !allowable_values.include?(content_type) fail ArgumentError, "invalid value for \"content_type\", must be one of #{allowable_values}" end # verify the required parameter 'client_request_id' is set if @api_client.config.client_side_validation && client_request_id.nil? fail ArgumentError, "Missing the required parameter 'client_request_id' when calling PaymentTokenApi.delete_payment_token" end # verify the required parameter 'api_key' is set if @api_client.config.client_side_validation && api_key.nil? fail ArgumentError, "Missing the required parameter 'api_key' when calling PaymentTokenApi.delete_payment_token" end # verify the required parameter 'timestamp' is set if @api_client.config.client_side_validation && .nil? fail ArgumentError, "Missing the required parameter 'timestamp' when calling PaymentTokenApi.delete_payment_token" end # verify the required parameter 'token_id' is set if @api_client.config.client_side_validation && token_id.nil? fail ArgumentError, "Missing the required parameter 'token_id' when calling PaymentTokenApi.delete_payment_token" end # resource path local_var_path = '/payment-tokens/{token-id}'.sub('{' + 'token-id' + '}', CGI.escape(token_id.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'storeId'] = opts[:'store_id'] if !opts[:'store_id'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # header_params[:'Content-Type'] = content_type header_params[:'Client-Request-Id'] = client_request_id header_params[:'Api-Key'] = api_key header_params[:'Timestamp'] = header_params[:'Message-Signature'] = opts[:'message_signature'] if !opts[:'message_signature'].nil? header_params[:'Authorization'] = opts[:'authorization'] if !opts[:'authorization'].nil? header_params[:'Region'] = opts[:'region'] if !opts[:'region'].nil? # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] # return_type return_type = opts[:return_type] || 'PaymentTokenizationResponse' # auth_names auth_names = opts[:auth_names] || [] = opts.merge( :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'PaymentTokenizationResponse', :default_error_type => 'ErrorResponse') data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: PaymentTokenApi#delete_payment_token\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |