Class: PayPal::SDK::ButtonManager::DataTypes::OtherPaymentMethodDetailsType
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::ButtonManager::DataTypes::OtherPaymentMethodDetailsType
- Defined in:
- lib/paypal-sdk/button_manager/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
2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 |
# File 'lib/paypal-sdk/button_manager/data_types.rb', line 2109 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 |