authorizenet 1.8.5.3 → 1.8.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/authorize_net/api/schema.rb +6 -6
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 285db8c942a87565df5c235bfa6f898d60bc3d09
|
|
4
|
+
data.tar.gz: 3d405e6977b51ec26b0322c9c802c23e9e8032d5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 320afacd4d759178e9811d90db20014bb4bddff787826657799a7fddd43f24e2de98c5b3c87a99a4cee33ff400558d4beba64c6b10478d5b66d592aa5acbf998
|
|
7
|
+
data.tar.gz: 51b5b85ca2b1ddce91795c508f58624272f19e7fcba8101dfed55e3051a94d85c12f84ced466c430dc23e49ed1d0b4b2b7894ea57fbbfa034a04827a923e1309
|
|
@@ -1176,8 +1176,8 @@ end
|
|
|
1176
1176
|
xml_accessor :description
|
|
1177
1177
|
xml_accessor :email
|
|
1178
1178
|
xml_accessor :customerProfileId
|
|
1179
|
-
xml_accessor :paymentProfiles
|
|
1180
|
-
xml_accessor :shipToList
|
|
1179
|
+
xml_accessor :paymentProfiles, :from => 'paymentProfiles' , :as => [CustomerPaymentProfileMaskedType]
|
|
1180
|
+
xml_accessor :shipToList, :from => 'shipToList' , :as => [CustomerAddressExType]
|
|
1181
1181
|
|
|
1182
1182
|
def initialize(merchantCustomerId = nil, description = nil, email = nil, customerProfileId = nil, paymentProfiles = [], shipToList = [])
|
|
1183
1183
|
@merchantCustomerId = merchantCustomerId
|
|
@@ -2066,12 +2066,12 @@ end
|
|
|
2066
2066
|
# payerID - SOAP::SOAPString
|
|
2067
2067
|
class SecureAcceptance
|
|
2068
2068
|
include ROXML
|
|
2069
|
-
xml_accessor :
|
|
2070
|
-
xml_accessor :
|
|
2069
|
+
xml_accessor :SecureAcceptanceUrl
|
|
2070
|
+
xml_accessor :PayerID
|
|
2071
2071
|
|
|
2072
2072
|
def initialize(secureAcceptanceUrl = nil, payerID = nil)
|
|
2073
|
-
@
|
|
2074
|
-
@
|
|
2073
|
+
@SecureAcceptanceUrl = secureAcceptanceUrl
|
|
2074
|
+
@PayerID = payerID
|
|
2075
2075
|
end
|
|
2076
2076
|
end
|
|
2077
2077
|
|