class AuthorizeNet::API::ARBSubscriptionType

{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ARBSubscriptionType

name - SOAP::SOAPString
paymentSchedule - PaymentScheduleType
amount - SOAP::SOAPDecimal
trialAmount - SOAP::SOAPDecimal
payment - PaymentType
order - OrderType
customer - CustomerType
billTo - NameAndAddressType
shipTo - NameAndAddressType
profile - CustomerProfileIdType

Public Class Methods

new(name = nil, paymentSchedule = nil, amount = nil, trialAmount = nil, payment = nil, order = nil, customer = nil, billTo = nil, shipTo = nil, profile = nil) click to toggle source
# File lib/authorize_net/api/schema.rb, line 1038
def initialize(name = nil, paymentSchedule = nil, amount = nil, trialAmount = nil, payment = nil, order = nil, customer = nil, billTo = nil, shipTo = nil, profile = nil)
  @name = name
  @paymentSchedule = paymentSchedule
  @amount = amount
  @trialAmount = trialAmount
  @payment = payment
  @order = order
  @customer = customer
  @billTo = billTo
  @shipTo = shipTo
  @profile = profile
end