Class: PayPal::SDK::Merchant::DataTypes::OtherPaymentMethodDetailsType

Inherits:
DataType
  • Object
show all
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_membersObject



2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
# File 'lib/paypal-sdk/merchant/data_types.rb', line 2203

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