Class: PayPal::SDK::ButtonManager::DataTypes::RecurringPaymentsProfileDetailsType

Inherits:
DataType
  • Object
show all
Defined in:
lib/paypal-sdk/button_manager/data_types.rb

Overview

Subscriber name - if missing, will use name in buyer’s account

Class Method Summary collapse

Class Method Details

.load_membersObject



2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
# File 'lib/paypal-sdk/button_manager/data_types.rb', line 2696

def self.load_members
  # Subscriber name - if missing, will use name in buyer's account 
  object_of :SubscriberName, String, :namespace => :ebl
  # Subscriber address - if missing, will use address in buyer's account 
  object_of :SubscriberShippingAddress, AddressType, :namespace => :ebl
  # When does this Profile begin billing? 
  object_of :BillingStartDate, DateTime, :namespace => :ebl, :required => true
  # Your own unique invoice or tracking number. Optional Character length and limitations: 127 single-byte alphanumeric characters 
  object_of :ProfileReference, String, :namespace => :ebl
end