Method: CyberSource::InlineResponse502#initialize

Defined in:
lib/cyberSource_client/models/inline_response_502.rb

#initialize(attributes = {}) ⇒ InlineResponse502

Initializes the object

Parameters:

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

    Model attributes in the form of hash



73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/cyberSource_client/models/inline_response_502.rb', line 73

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?(:'submitTimeUtc')
    self.submit_time_utc = attributes[:'submitTimeUtc']
  end

  if attributes.has_key?(:'status')
    self.status = attributes[:'status']
  end

  if attributes.has_key?(:'reason')
    self.reason = attributes[:'reason']
  end

  if attributes.has_key?(:'message')
    self.message = attributes[:'message']
  end
end