Class: OpenapiClient::PaymentTokenizationErrorResponse
- Inherits:
-
Object
- Object
- OpenapiClient::PaymentTokenizationErrorResponse
- Defined in:
- lib/openapi_client/models/payment_tokenization_error_response.rb
Overview
Payment tokenization response with error field included.
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#api_trace_id ⇒ Object
Request identifier in API, can be used to request logs from the support team.
-
#brand ⇒ Object
Card brand.
-
#client_request_id ⇒ Object
Echoes back the value in the request header for tracking.
-
#country ⇒ Object
Country of the card issued.
-
#error ⇒ Object
Returns the value of attribute error.
-
#order_id ⇒ Object
Client order ID if supplied by client, otherwise the order ID.
-
#payment_card ⇒ Object
Returns the value of attribute payment_card.
-
#payment_token ⇒ Object
Returns the value of attribute payment_token.
-
#processor ⇒ Object
Returns the value of attribute processor.
-
#request_status ⇒ Object
The status of the request.
-
#request_time ⇒ Object
Time of the request.
-
#response_type ⇒ Object
Returns the value of attribute response_type.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.openapi_all_of ⇒ Object
List of class defined in allOf (OpenAPI v3).
-
.openapi_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ PaymentTokenizationErrorResponse
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ PaymentTokenizationErrorResponse
Initializes the object
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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 116 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `OpenapiClient::PaymentTokenizationErrorResponse` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| if (!self.class.attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `OpenapiClient::PaymentTokenizationErrorResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'client_request_id') self.client_request_id = attributes[:'client_request_id'] end if attributes.key?(:'api_trace_id') self.api_trace_id = attributes[:'api_trace_id'] end if attributes.key?(:'response_type') self.response_type = attributes[:'response_type'] end if attributes.key?(:'request_status') self.request_status = attributes[:'request_status'] end if attributes.key?(:'request_time') self.request_time = attributes[:'request_time'] end if attributes.key?(:'brand') self.brand = attributes[:'brand'] end if attributes.key?(:'country') self.country = attributes[:'country'] end if attributes.key?(:'payment_token') self.payment_token = attributes[:'payment_token'] end if attributes.key?(:'payment_card') self.payment_card = attributes[:'payment_card'] end if attributes.key?(:'processor') self.processor = attributes[:'processor'] end if attributes.key?(:'order_id') self.order_id = attributes[:'order_id'] end if attributes.key?(:'error') self.error = attributes[:'error'] end end |
Instance Attribute Details
#api_trace_id ⇒ Object
Request identifier in API, can be used to request logs from the support team.
22 23 24 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 22 def api_trace_id @api_trace_id end |
#brand ⇒ Object
Card brand.
33 34 35 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 33 def brand @brand end |
#client_request_id ⇒ Object
Echoes back the value in the request header for tracking.
19 20 21 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 19 def client_request_id @client_request_id end |
#country ⇒ Object
Country of the card issued.
36 37 38 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 36 def country @country end |
#error ⇒ Object
Returns the value of attribute error.
47 48 49 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 47 def error @error end |
#order_id ⇒ Object
Client order ID if supplied by client, otherwise the order ID.
45 46 47 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 45 def order_id @order_id end |
#payment_card ⇒ Object
Returns the value of attribute payment_card.
40 41 42 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 40 def payment_card @payment_card end |
#payment_token ⇒ Object
Returns the value of attribute payment_token.
38 39 40 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 38 def payment_token @payment_token end |
#processor ⇒ Object
Returns the value of attribute processor.
42 43 44 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 42 def processor @processor end |
#request_status ⇒ Object
The status of the request.
27 28 29 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 27 def request_status @request_status end |
#request_time ⇒ Object
Time of the request.
30 31 32 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 30 def request_time @request_time end |
#response_type ⇒ Object
Returns the value of attribute response_type.
24 25 26 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 24 def response_type @response_type end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 72 def self.attribute_map { :'client_request_id' => :'clientRequestId', :'api_trace_id' => :'apiTraceId', :'response_type' => :'responseType', :'request_status' => :'requestStatus', :'request_time' => :'requestTime', :'brand' => :'brand', :'country' => :'country', :'payment_token' => :'paymentToken', :'payment_card' => :'paymentCard', :'processor' => :'processor', :'order_id' => :'orderId', :'error' => :'error' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
237 238 239 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 237 def self.build_from_hash(attributes) new.build_from_hash(attributes) end |
.openapi_all_of ⇒ Object
List of class defined in allOf (OpenAPI v3)
108 109 110 111 112 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 108 def self.openapi_all_of [ :'PaymentTokenizationResponse' ] end |
.openapi_types ⇒ Object
Attribute type mapping.
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 90 def self.openapi_types { :'client_request_id' => :'String', :'api_trace_id' => :'String', :'response_type' => :'ResponseType', :'request_status' => :'String', :'request_time' => :'Integer', :'brand' => :'String', :'country' => :'String', :'payment_token' => :'PaymentTokenDetails', :'payment_card' => :'PaymentCard', :'processor' => :'ProcessorData', :'order_id' => :'String', :'error' => :'Error' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 205 def ==(o) return true if self.equal?(o) self.class == o.class && client_request_id == o.client_request_id && api_trace_id == o.api_trace_id && response_type == o.response_type && request_status == o.request_status && request_time == o.request_time && brand == o.brand && country == o.country && payment_token == o.payment_token && payment_card == o.payment_card && processor == o.processor && order_id == o.order_id && error == o.error end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
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 299 300 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 265 def _deserialize(type, value) case type.to_sym when :DateTime DateTime.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :Boolean if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model OpenapiClient.const_get(type).build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
330 331 332 333 334 335 336 337 338 339 340 341 342 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 330 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 244 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.openapi_types.each_pair do |key, type| if type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(o) ⇒ Boolean
224 225 226 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 224 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
230 231 232 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 230 def hash [client_request_id, api_trace_id, response_type, request_status, request_time, brand, country, payment_token, payment_card, processor, order_id, error].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
180 181 182 183 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 180 def list_invalid_properties invalid_properties = Array.new invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
310 311 312 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 310 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
316 317 318 319 320 321 322 323 324 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 316 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) next if value.nil? hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
304 305 306 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 304 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
187 188 189 190 191 |
# File 'lib/openapi_client/models/payment_tokenization_error_response.rb', line 187 def valid? request_status_validator = EnumAttributeValidator.new('String', ["DELETED", "FAILED", "SUCCESS", "APPROVED", "WAITING", "VALIDATION_FAILED", "DECLINED"]) return false unless request_status_validator.valid?(@request_status) true end |