Class: PayPal::SDK::ButtonManagerRails::DataTypes::OtherPaymentMethodDetailsType
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::ButtonManagerRails::DataTypes::OtherPaymentMethodDetailsType
- Defined in:
- lib/paypal-sdk/button_manager_rails/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
2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 |
# 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 |