Class: PayPal::SDK::Merchant::DataTypes::OtherPaymentMethodDetailsType
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::Merchant::DataTypes::OtherPaymentMethodDetailsType
- Defined in:
- lib/paypal-sdk/merchant/data_types.rb
Overview
Lists the Payment Methods (other than PayPal) that the use can pay with e.g. Money Order. Optional.
Class Method Summary collapse
Class Method Details
.load_members ⇒ Object
2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 |
# File 'lib/paypal-sdk/merchant/data_types.rb', line 2209 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 |