class AuthorizeNet::API::ExtendedAmountType

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

amount - SOAP::SOAPDecimal
name - SOAP::SOAPString
description - SOAP::SOAPString

Public Class Methods

new(amount = nil, name = nil, description = nil) click to toggle source
# File lib/authorize_net/api/schema.rb, line 1235
def initialize(amount = nil, name = nil, description = nil)
  @amount = amount
  @name = name
  @description = description
end