Class: OnlinePayments::SDK::Domain::ErrorResponse
- Inherits:
-
OnlinePayments::SDK::DataObject
- Object
- OnlinePayments::SDK::DataObject
- OnlinePayments::SDK::Domain::ErrorResponse
- Defined in:
- lib/onlinepayments/sdk/domain/error_response.rb
Instance Attribute Summary collapse
-
#error_id ⇒ String
The current value of error_id.
-
#errors ⇒ Array<OnlinePayments::SDK::Domain::APIError>
The current value of errors.
Instance Method Summary collapse
Methods inherited from OnlinePayments::SDK::DataObject
Instance Attribute Details
#error_id ⇒ String
Returns the current value of error_id.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/error_response.rb', line 12 def error_id @error_id end |
#errors ⇒ Array<OnlinePayments::SDK::Domain::APIError>
Returns the current value of errors.
12 13 14 |
# File 'lib/onlinepayments/sdk/domain/error_response.rb', line 12 def errors @errors end |
Instance Method Details
#from_hash(hash) ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/onlinepayments/sdk/domain/error_response.rb', line 24 def from_hash(hash) super @error_id = hash['errorId'] if hash.key? 'errorId' if hash.key? 'errors' raise TypeError, "value '%s' is not an Array" % [hash['errors']] unless hash['errors'].is_a? Array @errors = [] hash['errors'].each do |e| @errors << OnlinePayments::SDK::Domain::APIError.new_from_hash(e) end end end |
#to_h ⇒ Hash
17 18 19 20 21 22 |
# File 'lib/onlinepayments/sdk/domain/error_response.rb', line 17 def to_h hash = super hash['errorId'] = @error_id unless @error_id.nil? hash['errors'] = @errors.collect(&:to_h) if @errors hash end |