Class: CyberSource::PtsV2PaymentsPost201ResponseIssuerInformation
- Inherits:
-
Object
- Object
- CyberSource::PtsV2PaymentsPost201ResponseIssuerInformation
- Defined in:
- lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb
Instance Attribute Summary collapse
-
#country ⇒ Object
Country in which the card was issued.
-
#country_specific_discretionary_data ⇒ Object
Data defined by the issuer.
-
#discretionary_data ⇒ Object
Data defined by the issuer.
-
#pin_request_indicator ⇒ Object
This field contains value ‘1’ which is sent by Issuer in the response when PIN is requested by issuer, This field is only supported for Visa Platform Connect.
-
#response_code ⇒ Object
This is the raw Association/Issuer Response Codes.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.json_map ⇒ Object
Attribute mapping from JSON key to ruby-style variable name.
-
.swagger_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 ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ PtsV2PaymentsPost201ResponseIssuerInformation
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 = {}) ⇒ PtsV2PaymentsPost201ResponseIssuerInformation
Initializes the object
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/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 66 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } if attributes.has_key?(:'country') self.country = attributes[:'country'] end if attributes.has_key?(:'discretionaryData') self.discretionary_data = attributes[:'discretionaryData'] end if attributes.has_key?(:'countrySpecificDiscretionaryData') self.country_specific_discretionary_data = attributes[:'countrySpecificDiscretionaryData'] end if attributes.has_key?(:'responseCode') self.response_code = attributes[:'responseCode'] end if attributes.has_key?(:'pinRequestIndicator') self.pin_request_indicator = attributes[:'pinRequestIndicator'] end end |
Instance Attribute Details
#country ⇒ Object
Country in which the card was issued. This information enables you to determine whether the card was issued domestically or internationally. Use the two-character [ISO Standard Country Codes](developer.cybersource.com/library/documentation/sbc/quickref/countries_alpha_list.pdf). This field is supported for Visa, Mastercard, Discover, Diners Club, JCB, and Maestro (International) on Chase Paymentech Solutions.
17 18 19 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 17 def country @country end |
#country_specific_discretionary_data ⇒ Object
Data defined by the issuer. This national use field contains two subfields for information unique to the processing of Visa transactions by members in Japan. This subfield contains the Katakana text to be printed on the receipt.
23 24 25 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 23 def country_specific_discretionary_data @country_specific_discretionary_data end |
#discretionary_data ⇒ Object
Data defined by the issuer. The value for this reply field will probably be the same as the value that you submitted in the authorization request, but it is possible for the processor, issuer, or acquirer to modify the value. This field is supported only for Visa transactions on **CyberSource through VisaNet**.
20 21 22 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 20 def discretionary_data @discretionary_data end |
#pin_request_indicator ⇒ Object
This field contains value ‘1’ which is sent by Issuer in the response when PIN is requested by issuer, This field is only supported for Visa Platform Connect.
29 30 31 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 29 def pin_request_indicator @pin_request_indicator end |
#response_code ⇒ Object
This is the raw Association/Issuer Response Codes. You can use ‘issuer/association’ response codes to identify when you can retry to authorize a declined transaction and increase successful transaction volumes. You’ll receive an association/issuer response code for the majority of transactions. #### Processors supported: - HSBC - FDC Nashville Global - SIX Currently SIX is not receiving Association/Issuer Response Codes here it receives the additional authorization code that must be printed on the receipt when returned by the processor. #### Possible values: | Card Type | Response Code | Description | | ———– | ————- | —————————————————————————— | | VISA | 000 | Successful approval/completion or that V.I.P. PIN verification is successful | | VISA | 001 | Refer to card issuer | | VISA | 002 | Refer to card issuer, special condition | | VISA | 003 | Invalid merchant or service provider | | VISA | 004 | Pickup card | | MasterCard | 000 | Approved or completed successfully | | MasterCard | 001 | Refer to card issuer | | MasterCard | 003 | Invalid merchant | | MasterCard | 004 | Capture card | | MasterCard | 005 | Do not honor | | AMEX | 000 | Approved | | AMEX | 001 | Approve with ID | | AMEX | 002 | Partial Approval (Prepaid Cards only) | | AMEX | 100 | Deny | | AMEX | 101 | Expired Card/Invalid Expiration Date | | Discover | 000 | Approved or completed successfully | | Discover | 001 | Reserved for future USE | | Discover | 002 | Reserved for future USE | | Discover | 003 | Invalid Merchant | | Discover | 004 | Capture Card |
26 27 28 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 26 def response_code @response_code end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
32 33 34 35 36 37 38 39 40 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 32 def self.attribute_map { :'country' => :'country', :'discretionary_data' => :'discretionaryData', :'country_specific_discretionary_data' => :'countrySpecificDiscretionaryData', :'response_code' => :'responseCode', :'pin_request_indicator' => :'pinRequestIndicator' } end |
.json_map ⇒ Object
Attribute mapping from JSON key to ruby-style variable name.
43 44 45 46 47 48 49 50 51 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 43 def self.json_map { :'country' => :'country', :'discretionary_data' => :'discretionary_data', :'country_specific_discretionary_data' => :'country_specific_discretionary_data', :'response_code' => :'response_code', :'pin_request_indicator' => :'pin_request_indicator' } end |
.swagger_types ⇒ Object
Attribute type mapping.
54 55 56 57 58 59 60 61 62 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 54 def self.swagger_types { :'country' => :'String', :'discretionary_data' => :'String', :'country_specific_discretionary_data' => :'String', :'response_code' => :'String', :'pin_request_indicator' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
138 139 140 141 142 143 144 145 146 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 138 def ==(o) return true if self.equal?(o) self.class == o.class && country == o.country && discretionary_data == o.discretionary_data && country_specific_discretionary_data == o.country_specific_discretionary_data && response_code == o.response_code && pin_request_indicator == o.pin_request_indicator end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
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 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 184 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 temp_model = CyberSource.const_get(type).new temp_model.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
250 251 252 253 254 255 256 257 258 259 260 261 262 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 250 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
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 163 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{self.class.json_map[key]}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{self.class.json_map[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
150 151 152 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 150 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
156 157 158 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 156 def hash [country, discretionary_data, country_specific_discretionary_data, response_code, pin_request_indicator].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
95 96 97 98 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 95 def list_invalid_properties invalid_properties = Array.new invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
230 231 232 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 230 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
236 237 238 239 240 241 242 243 244 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 236 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
224 225 226 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 224 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
102 103 104 |
# File 'lib/cybersource_rest_client/models/pts_v2_payments_post201_response_issuer_information.rb', line 102 def valid? true end |