Class: Io::Flow::V0::Models::CardError
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::CardError
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Details for why a card was not created
Instance Attribute Summary collapse
-
#avs ⇒ Object
readonly
Returns the value of attribute avs.
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#cvv ⇒ Object
readonly
Returns the value of attribute cvv.
-
#messages ⇒ Object
readonly
Returns the value of attribute messages.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ CardError
constructor
A new instance of CardError.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ CardError
Returns a new instance of CardError.
13818 13819 13820 13821 13822 13823 13824 13825 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13818 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:code, :messages], 'CardError') @code = (x = opts.delete(:code); x.is_a?(::Io::Flow::V0::Models::CardErrorCode) ? x : ::Io::Flow::V0::Models::CardErrorCode.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
#avs ⇒ Object (readonly)
Returns the value of attribute avs.
13816 13817 13818 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13816 def avs @avs end |
#code ⇒ Object (readonly)
Returns the value of attribute code.
13816 13817 13818 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13816 def code @code end |
#cvv ⇒ Object (readonly)
Returns the value of attribute cvv.
13816 13817 13818 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13816 def cvv @cvv end |
#messages ⇒ Object (readonly)
Returns the value of attribute messages.
13816 13817 13818 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13816 def @messages end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
13831 13832 13833 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13831 def copy(incoming={}) CardError.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
13835 13836 13837 13838 13839 13840 13841 13842 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13835 def to_hash { :code => code.value, :messages => , :avs => avs.nil? ? nil : avs.to_hash, :cvv => cvv.nil? ? nil : cvv.to_hash } end |
#to_json ⇒ Object
13827 13828 13829 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 13827 def to_json JSON.dump(to_hash) end |