class AuthorizeNet::API::SubscriptionCustomerProfileType

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

merchantCustomerId - SOAP::SOAPString
description - SOAP::SOAPString
email - SOAP::SOAPString
customerProfileId - (any)
paymentProfile - CustomerPaymentProfileMaskedType
shippingProfile - CustomerAddressExType

Public Class Methods

new(merchantCustomerId = nil, description = nil, email = nil, customerProfileId = nil, paymentProfile = nil, shippingProfile = nil) click to toggle source
# File lib/authorize_net/api/schema.rb, line 4931
def initialize(merchantCustomerId = nil, description = nil, email = nil, customerProfileId = nil, paymentProfile = nil, shippingProfile = nil)
  @merchantCustomerId = merchantCustomerId
  @description = description
  @email = email
  @customerProfileId = customerProfileId
  @paymentProfile = paymentProfile
  @shippingProfile = shippingProfile
end