Class: PayPal::SDK::ButtonManager::DataTypes::RecurringPaymentsProfileDetailsType
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::ButtonManager::DataTypes::RecurringPaymentsProfileDetailsType
- 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_members ⇒ Object
2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 |
# File 'lib/paypal-sdk/button_manager/data_types.rb', line 2661 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 |