Class: PayPal::SDK::Merchant::DataTypes::RecurringPaymentsProfileDetailsType

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

Overview

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

Class Method Summary collapse

Class Method Details

.load_membersObject



2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
# 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