class PayPal::SDK::Merchant::DataTypes::RecurringPaymentsProfileDetailsType

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

Public Class Methods

load_members() click to toggle source
# File lib/paypal-sdk/merchant/data_types.rb, line 2762
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