Class: AuthorizeNet::API::ARBSubscriptionType

Inherits:
Object
  • Object
show all
Includes:
ROXML
Defined in:
lib/authorize_net/api/schema.rb

Overview

AnetApi/xml/v1/schema/AnetApiSchema.xsdARBSubscriptionType

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

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, paymentSchedule = nil, amount = nil, trialAmount = nil, payment = nil, order = nil, customer = nil, billTo = nil, shipTo = nil) ⇒ ARBSubscriptionType

Returns a new instance of ARBSubscriptionType.



905
906
907
908
909
910
911
912
913
914
915
# File 'lib/authorize_net/api/schema.rb', line 905

def initialize(name = nil, paymentSchedule = nil, amount = nil, trialAmount = nil, payment = nil, order = nil, customer = nil, billTo = nil, shipTo = nil)
  @name = name
  @paymentSchedule = paymentSchedule
  @amount = amount
  @trialAmount = trialAmount
  @payment = payment
  @order = order
  @customer = customer
  @billTo = billTo
  @shipTo = shipTo
end