Class: PayPal::SDK::ButtonManagerRails::DataTypes::ErrorType
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::ButtonManagerRails::DataTypes::ErrorType
- Defined in:
- lib/paypal-sdk/button_manager_rails/data_types.rb
Overview
Error code can be used by a receiving application to debugging a response message. These codes will need to be uniquely defined for each application.
Class Method Summary collapse
Class Method Details
.load_members ⇒ Object
627 628 629 630 631 632 633 634 635 636 |
# File 'lib/paypal-sdk/button_manager_rails/data_types.rb', line 627 def self.load_members object_of :ShortMessage, String, :namespace => :ebl object_of :LongMessage, String, :namespace => :ebl # Error code can be used by a receiving application to debugging a response message. These codes will need to be uniquely defined for each application. object_of :ErrorCode, String, :namespace => :ebl # SeverityCode indicates whether the error is an application level error or if it is informational error, i.e., warning. object_of :SeverityCode, SeverityCodeType, :namespace => :ebl # This optional element may carry additional application-specific error variables that indicate specific information about the error condition particularly in the cases where there are multiple instances of the ErrorType which require additional context. array_of :ErrorParameters, ErrorParameterType, :namespace => :ebl end |