class PayPal::SDK::ButtonManagerRails::DataTypes::OtherPaymentMethodDetailsType

Lists the Payment Methods (other than PayPal) that the use can pay with e.g. Money Order. Optional.

Public Class Methods

load_members() click to toggle source
# File lib/paypal-sdk/button_manager_rails/data_types.rb, line 2144
def self.load_members
  # The identifier of the Payment Method.
  object_of :OtherPaymentMethodId, String, :namespace => :ebl
  # Valid values are 'Method', 'SubMethod'.
  object_of :OtherPaymentMethodType, String, :namespace => :ebl
  # The name of the Payment Method.
  object_of :OtherPaymentMethodLabel, String, :namespace => :ebl
  # The short description of the Payment Method, goes along with the label.
  object_of :OtherPaymentMethodLabelDescription, String, :namespace => :ebl
  # The title for the long description.
  object_of :OtherPaymentMethodLongDescriptionTitle, String, :namespace => :ebl
  # The long description of the Payment Method.
  object_of :OtherPaymentMethodLongDescription, String, :namespace => :ebl
  # The icon of the Payment Method.
  object_of :OtherPaymentMethodIcon, String, :namespace => :ebl
  # If this flag is true, then OtherPaymentMethodIcon is required to have a valid value; the label will be hidden and only ICON will be shown.
  object_of :OtherPaymentMethodHideLabel, Boolean, :namespace => :ebl
end