Class: AuthorizeNet::API::SubscriptionDetail
- Inherits:
-
Object
- Object
- AuthorizeNet::API::SubscriptionDetail
- Includes:
- ROXML
- Defined in:
- lib/authorize_net/api/schema.rb
Overview
AnetApi/xml/v1/schema/AnetApiSchema.xsdSubscriptionDetail
id - SOAP::SOAPInt
name - SOAP::SOAPString
status - ARBSubscriptionStatusEnum
createTimeStampUTC - SOAP::SOAPDateTime
firstName - SOAP::SOAPString
lastName - SOAP::SOAPString
totalOccurrences - SOAP::SOAPInt
pastOccurrences - SOAP::SOAPInt
paymentMethod - PaymentMethodEnum
accountNumber - SOAP::SOAPString
invoice - SOAP::SOAPString
amount - SOAP::SOAPDecimal
currencyCode - SOAP::SOAPString
customerProfileId - SOAP::SOAPInt
customerPaymentProfileId - SOAP::SOAPInt
totalOccurrences - SOAP::SOAPInt
Instance Method Summary collapse
-
#initialize(id = nil, name = nil, status = nil, createTimeStampUTC = nil, firstName = nil, lastName = nil, totalOccurrences = nil, pastOccurrences = nil, paymentMethod = nil, accountNumber = nil, invoice = nil, amount = nil, currencyCode = nil, customerProfileId = nil, customerPaymentProfileId = nil, customerShippingProfileId = nil) ⇒ SubscriptionDetail
constructor
A new instance of SubscriptionDetail.
Constructor Details
#initialize(id = nil, name = nil, status = nil, createTimeStampUTC = nil, firstName = nil, lastName = nil, totalOccurrences = nil, pastOccurrences = nil, paymentMethod = nil, accountNumber = nil, invoice = nil, amount = nil, currencyCode = nil, customerProfileId = nil, customerPaymentProfileId = nil, customerShippingProfileId = nil) ⇒ SubscriptionDetail
Returns a new instance of SubscriptionDetail.
2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 |
# File 'lib/authorize_net/api/schema.rb', line 2467 def initialize(id = nil, name = nil, status = nil, createTimeStampUTC = nil, firstName = nil, lastName = nil, totalOccurrences = nil, pastOccurrences = nil, paymentMethod = nil, accountNumber = nil, invoice = nil, amount = nil, currencyCode = nil, customerProfileId = nil, customerPaymentProfileId = nil, customerShippingProfileId = nil) @id = id @name = name @status = status @createTimeStampUTC = createTimeStampUTC @firstName = firstName @lastName = lastName @totalOccurrences = totalOccurrences @pastOccurrences = pastOccurrences @paymentMethod = paymentMethod @accountNumber = accountNumber @invoice = invoice @amount = amount @currencyCode = currencyCode @customerProfileId = customerProfileId @customerPaymentProfileId = customerPaymentProfileId @customerShippingProfileId = customerShippingProfileId end |