class PayPal::SDK::ButtonManagerRails::DataTypes::AbstractResponseType

Base type definition of a response payload that can carry any type of payload content with following optional elements: - timestamp of response message, - application level acknowledgement, and - application-level errors and warnings.

Public Class Methods

load_members() click to toggle source
# File lib/paypal-sdk/button_manager_rails/data_types.rb, line 657
def self.load_members
  # This value represents the date and time (GMT) when the response was generated by a service provider (as a result of processing of a request).
  object_of :Timestamp, DateTime, :namespace => :ebl
  include ResponseStatus
  # Application level acknowledgement code.
  object_of :Ack, AckCodeType, :namespace => :ebl
  # CorrelationID may be used optionally with an application level acknowledgement.
  object_of :CorrelationID, String, :namespace => :ebl
  array_of :Errors, ErrorType, :namespace => :ebl
  # This refers to the version of the response payload schema.
  object_of :Version, String, :namespace => :ebl
  # This refers to the specific software build that was used in the deployment for processing the request and generating the response.
  object_of :Build, String, :namespace => :ebl
end