Class: Io::Flow::V0::Models::CaptureError
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::CaptureError
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#decline_code ⇒ Object
readonly
Returns the value of attribute decline_code.
-
#messages ⇒ Object
readonly
Returns the value of attribute messages.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ CaptureError
constructor
A new instance of CaptureError.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ CaptureError
Returns a new instance of CaptureError.
32790 32791 32792 32793 32794 32795 32796 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32790 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:messages, :decline_code], 'CaptureError') @code = (x = (x = opts.delete(:code); x.nil? ? "generic_error" : x); x.is_a?(::Io::Flow::V0::Models::GenericErrorCode) ? x : ::Io::Flow::V0::Models::GenericErrorCode.apply(x)) @messages = HttpClient::Preconditions.assert_class('messages', opts.delete(:messages), Array).map { |v| HttpClient::Preconditions.assert_class('messages', v, String) } @decline_code = (x = opts.delete(:decline_code); x.is_a?(::Io::Flow::V0::Models::CaptureDeclineCode) ? x : ::Io::Flow::V0::Models::CaptureDeclineCode.apply(x)) end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
32788 32789 32790 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32788 def code @code end |
#decline_code ⇒ Object (readonly)
Returns the value of attribute decline_code.
32788 32789 32790 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32788 def decline_code @decline_code end |
#messages ⇒ Object (readonly)
Returns the value of attribute messages.
32788 32789 32790 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32788 def @messages end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
32802 32803 32804 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32802 def copy(incoming={}) CaptureError.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
32806 32807 32808 32809 32810 32811 32812 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32806 def to_hash { :code => code.value, :messages => , :decline_code => decline_code.value } end |
#to_json ⇒ Object
32798 32799 32800 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32798 def to_json JSON.dump(to_hash) end |