Class: Io::Flow::V0::Models::AuthorizationError

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Overview

Details for why an authorization was not created

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ AuthorizationError

Returns a new instance of AuthorizationError.



28836
28837
28838
28839
28840
28841
28842
28843
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28836

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:code, :messages], 'AuthorizationError')
  @code = (x = opts.delete(:code); x.is_a?(::Io::Flow::V0::Models::AuthorizationDeclineCode) ? x : ::Io::Flow::V0::Models::AuthorizationDeclineCode.apply(x))
  @messages = HttpClient::Preconditions.assert_class('messages', opts.delete(:messages), Array).map { |v| HttpClient::Preconditions.assert_class('messages', v, String) }
  @avs = (x = opts.delete(:avs); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Avs) ? x : ::Io::Flow::V0::Models::Avs.new(x)))
  @cvv = (x = opts.delete(:cvv); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Cvv) ? x : ::Io::Flow::V0::Models::Cvv.new(x)))
end

Instance Attribute Details

#avsObject (readonly)

Returns the value of attribute avs.



28834
28835
28836
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28834

def avs
  @avs
end

#codeObject (readonly)

Returns the value of attribute code.



28834
28835
28836
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28834

def code
  @code
end

#cvvObject (readonly)

Returns the value of attribute cvv.



28834
28835
28836
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28834

def cvv
  @cvv
end

#messagesObject (readonly)

Returns the value of attribute messages.



28834
28835
28836
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28834

def messages
  @messages
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



28849
28850
28851
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28849

def copy(incoming={})
  AuthorizationError.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



28853
28854
28855
28856
28857
28858
28859
28860
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28853

def to_hash
  {
    :code => code.value,
    :messages => messages,
    :avs => avs.nil? ? nil : avs.to_hash,
    :cvv => cvv.nil? ? nil : cvv.to_hash
  }
end

#to_jsonObject



28845
28846
28847
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28845

def to_json
  JSON.dump(to_hash)
end