Class: CityPayApiClient::ThreeDSecure

Inherits:
Object
  • Object
show all
Defined in:
lib/citypay_api_client/models/three_d_secure.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ ThreeDSecure

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 113

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `CityPayApiClient::ThreeDSecure` initialize method"
  end

  # check to see if the attribute exists and convert string to symbol for hash key
  acceptable_attribute_map = self.class.acceptable_attribute_map
  attributes = attributes.each_with_object({}) { |(k, v), h|
    if (!acceptable_attribute_map.key?(k.to_sym))
      fail ArgumentError, "`#{k}` is not a valid attribute in `CityPayApiClient::ThreeDSecure`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
    end
    h[k.to_sym] = v
  }

  if attributes.key?(:'accept_headers')
    self.accept_headers = attributes[:'accept_headers']
  end

  if attributes.key?(:'browser_color_depth')
    self.browser_color_depth = attributes[:'browser_color_depth']
  end

  if attributes.key?(:'browser_ip')
    self.browser_ip = attributes[:'browser_ip']
  end

  if attributes.key?(:'browser_java_enabled')
    self.browser_java_enabled = attributes[:'browser_java_enabled']
  end

  if attributes.key?(:'browser_language')
    self.browser_language = attributes[:'browser_language']
  end

  if attributes.key?(:'browser_screen_height')
    self.browser_screen_height = attributes[:'browser_screen_height']
  end

  if attributes.key?(:'browser_screen_width')
    self.browser_screen_width = attributes[:'browser_screen_width']
  end

  if attributes.key?(:'browser_tz')
    self.browser_tz = attributes[:'browser_tz']
  end

  if attributes.key?(:'cp_bx')
    self.cp_bx = attributes[:'cp_bx']
  end

  if attributes.key?(:'downgrade1')
    self.downgrade1 = attributes[:'downgrade1']
  end

  if attributes.key?(:'merchant_termurl')
    self.merchant_termurl = attributes[:'merchant_termurl']
  end

  if attributes.key?(:'tds_policy')
    self.tds_policy = attributes[:'tds_policy']
  end

  if attributes.key?(:'user_agent')
    self.user_agent = attributes[:'user_agent']
  end
end

Instance Attribute Details

#accept_headersObject

Required for 3DSv1. Optional if the cp_bx value is provided otherwise required for 3Dv2 processing operating in browser authentication mode. The cp_bx value will override any value supplied to this field. The content of the HTTP accept header as sent to the merchant from the cardholder’s user agent. This value will be validated by the ACS when the card holder authenticates themselves to verify that no intermediary is performing this action. Required for 3DSv1.



19
20
21
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 19

def accept_headers
  @accept_headers
end

#browser_color_depthObject

BrowserColorDepth field used for 3DSv2 browser enablement. Recommendation is to use citypay.js and the bx function to gather this value.



22
23
24
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 22

def browser_color_depth
  @browser_color_depth
end

#browser_ipObject

BrowserIP field used for 3DSv2 browser enablement. Recommendation is to use citypay.js and the bx function to gather this value.



25
26
27
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 25

def browser_ip
  @browser_ip
end

#browser_java_enabledObject

BrowserJavaEnabled field used for 3DSv2 browser enablement. Recommendation is to use citypay.js and the bx function to gather this value.



28
29
30
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 28

def browser_java_enabled
  @browser_java_enabled
end

#browser_languageObject

BrowserLanguage field used for 3DSv2 browser enablement. Recommendation is to use citypay.js and the bx function to gather this value.



31
32
33
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 31

def browser_language
  @browser_language
end

#browser_screen_heightObject

BrowserScreenHeight field used for 3DSv2 browser enablement. Recommendation is to use citypay.js and the bx function to gather this value.



34
35
36
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 34

def browser_screen_height
  @browser_screen_height
end

#browser_screen_widthObject

BrowserScreenWidth field used for 3DSv2 browser enablement. Recommendation is to use citypay.js and the bx function to gather this value.



37
38
39
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 37

def browser_screen_width
  @browser_screen_width
end

#browser_tzObject

BrowserTZ offset field used for 3DSv2 browser enablement. Recommendation is to use citypay.js and the bx function to gather this value.



40
41
42
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 40

def browser_tz
  @browser_tz
end

#cp_bxObject

Required for 3DSv2. Browser extension value produced by the citypay.js bx function. See [sandbox.citypay.com/3dsv2/bx](https://sandbox.citypay.com/3dsv2/bx) for details.



43
44
45
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 43

def cp_bx
  @cp_bx
end

#downgrade1Object

Where a merchant is configured for 3DSv2, setting this option will attempt to downgrade the transaction to 3DSv1.



46
47
48
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 46

def downgrade1
  @downgrade1
end

#merchant_termurlObject

A controller URL for 3D-Secure processing that any response from an authentication request or challenge request should be sent to. The controller should forward on the response from the URL back via this API for subsequent processing.



49
50
51
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 49

def merchant_termurl
  @merchant_termurl
end

#tds_policyObject

A policy value which determines whether ThreeDSecure is enforced or bypassed. Note that this will only work for e-commerce transactions and accounts that have 3DSecure enabled and fully registered with Visa, MasterCard or American Express. It is useful when transactions may be wanted to bypass processing rules. Note that this may affect the liability shift of transactions and may occur a higher fee with the acquiring bank. Values are 0 for the default policy (default value if not supplied). Your default values are determined by your account manager on setup of the account. 1 for an enforced policy. Transactions will be enabled for 3DS processing 2 to bypass. Transactions that are bypassed will switch off 3DS processing.



52
53
54
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 52

def tds_policy
  @tds_policy
end

#user_agentObject

Required for 3DSv1. Optional if the cp_bx value is provided otherwise required 3Dv2 processing operating in browser authentication mode. The cp_bx value will override any value supplied to this field. The content of the HTTP user-agent header as sent to the merchant from the cardholder’s user agent. This value will be validated by the ACS when the card holder authenticates themselves to verify that no intermediary is performing this action. Required for 3DSv1.



55
56
57
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 55

def user_agent
  @user_agent
end

Class Method Details

._deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



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
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 254

def self._deserialize(type, value)
  case type.to_sym
  when :Time
    Time.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
    # models (e.g. Pet) or oneOf
    klass = CityPayApiClient.const_get(type)
    klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
  end
end

.acceptable_attribute_mapObject

Returns attribute mapping this model knows about



77
78
79
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 77

def self.acceptable_attribute_map
  attribute_map
end

.acceptable_attributesObject

Returns all the JSON keys this model knows about



82
83
84
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 82

def self.acceptable_attributes
  acceptable_attribute_map.values
end

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 58

def self.attribute_map
  {
    :'accept_headers' => :'accept_headers',
    :'browser_color_depth' => :'browserColorDepth',
    :'browser_ip' => :'browserIP',
    :'browser_java_enabled' => :'browserJavaEnabled',
    :'browser_language' => :'browserLanguage',
    :'browser_screen_height' => :'browserScreenHeight',
    :'browser_screen_width' => :'browserScreenWidth',
    :'browser_tz' => :'browserTZ',
    :'cp_bx' => :'cp_bx',
    :'downgrade1' => :'downgrade1',
    :'merchant_termurl' => :'merchant_termurl',
    :'tds_policy' => :'tds_policy',
    :'user_agent' => :'user_agent'
  }
end

.build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 230

def self.build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  attributes = attributes.transform_keys(&:to_sym)
  transformed_hash = {}
  openapi_types.each_pair do |key, type|
    if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = nil
    elsif 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[attribute_map[key]].is_a?(Array)
        transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
      end
    elsif !attributes[attribute_map[key]].nil?
      transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
    end
  end
  new(transformed_hash)
end

.openapi_nullableObject

List of attributes with nullable: true



106
107
108
109
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 106

def self.openapi_nullable
  Set.new([
  ])
end

.openapi_typesObject

Attribute type mapping.



87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 87

def self.openapi_types
  {
    :'accept_headers' => :'String',
    :'browser_color_depth' => :'String',
    :'browser_ip' => :'String',
    :'browser_java_enabled' => :'String',
    :'browser_language' => :'String',
    :'browser_screen_height' => :'String',
    :'browser_screen_width' => :'String',
    :'browser_tz' => :'String',
    :'cp_bx' => :'String',
    :'downgrade1' => :'Boolean',
    :'merchant_termurl' => :'String',
    :'tds_policy' => :'String',
    :'user_agent' => :'String'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 197

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      accept_headers == o.accept_headers &&
      browser_color_depth == o.browser_color_depth &&
      browser_ip == o.browser_ip &&
      browser_java_enabled == o.browser_java_enabled &&
      browser_language == o.browser_language &&
      browser_screen_height == o.browser_screen_height &&
      browser_screen_width == o.browser_screen_width &&
      browser_tz == o.browser_tz &&
      cp_bx == o.cp_bx &&
      downgrade1 == o.downgrade1 &&
      merchant_termurl == o.merchant_termurl &&
      tds_policy == o.tds_policy &&
      user_agent == o.user_agent
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 325

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

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


217
218
219
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 217

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



223
224
225
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 223

def hash
  [accept_headers, browser_color_depth, browser_ip, browser_java_enabled, browser_language, browser_screen_height, browser_screen_width, browser_tz, cp_bx, downgrade1, merchant_termurl, tds_policy, user_agent].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



182
183
184
185
186
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 182

def list_invalid_properties
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
  invalid_properties = Array.new
  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



301
302
303
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 301

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



307
308
309
310
311
312
313
314
315
316
317
318
319
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 307

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    if value.nil?
      is_nullable = self.class.openapi_nullable.include?(attr)
      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
    end

    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



295
296
297
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 295

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



190
191
192
193
# File 'lib/citypay_api_client/models/three_d_secure.rb', line 190

def valid?
  warn '[DEPRECATED] the `valid?` method is obsolete'
  true
end