authorizenet 2.0.1 → 2.0.2

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/authorize_net/api/schema.rb +63 -44
  3. metadata +3 -45
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 97d213dfc079edcb493e06b538e45ea48b7109dcc8a9ee0048c19a37f810b677
4
- data.tar.gz: 384c4b78ca409bd61f0b19dd7aa0291ec26a47e5687fc68a6e5938e620cc8b4d
3
+ metadata.gz: 76e57d462a025306670af862e098184bd9e9f12937316d931e6a1463421463d2
4
+ data.tar.gz: b93486eb41b4e2ecf1e3cdd10eaeeb8f8a4ddf9e8b8af02ecfef6da8766d17bf
5
5
  SHA512:
6
- metadata.gz: e08e6c0a987090ffd06ba7abfa855bee01fb1d6dedbef668a78c106a0bac0a4fdf6da2ec733f2882d8fd276caac87aaf2fcbad0a414c238e72fff6e3aa49b1b3
7
- data.tar.gz: 6f774b50617975905fda052796d92f0c00c576d48e4b446183c3c5f4ed99433bbd8b2eab8082ee13988aee9d598901b8f12dec5f05269c3d02d7a88cf8011129
6
+ metadata.gz: 5d187785ebcc206c54c745a95d72b445ec1657c4e5742c7d24d8cb278a39fa8d078b1b3f06c990c257df32ea2cdcc53aa92876d56339fb3261353c5765d94482
7
+ data.tar.gz: 6311927fe45704e8dbe4b23f3ad4a3542cc2a222cbfece86b2a26fc1bb0e9b4a49130777581f57105debed646305809c3221215d2751c48961d58bcc6cf640ed
@@ -57,7 +57,7 @@ module AuthorizeNet::API
57
57
  # {AnetApi/xml/v1/schema/AnetApiSchema.xsd}ArrayOfPermissionType
58
58
  class ArrayOfPermissionType < ::Array
59
59
  end
60
-
60
+
61
61
  # {AnetApi/xml/v1/schema/AnetApiSchema.xsd}ArrayOfContactDetail
62
62
  class ArrayOfContactDetail < ::Array
63
63
  end
@@ -244,14 +244,14 @@ module AuthorizeNet::API
244
244
  include ROXML
245
245
  xml_accessor :email
246
246
  xml_accessor :firstName
247
- xml_accessor :lastName
247
+ xml_accessor :lastName
248
248
  def initialize(email = nil, firstName = nil, lastName = nil)
249
249
  @email = email
250
250
  @firstName = firstName
251
251
  @lastName = lastName
252
252
  end
253
253
  end
254
-
254
+
255
255
  # {AnetApi/xml/v1/schema/AnetApiSchema.xsd}transRetailInfoType
256
256
  # marketType - SOAP::SOAPString
257
257
  # deviceType - SOAP::SOAPString
@@ -757,7 +757,7 @@ end
757
757
  @amexDataTAA2 = amexDataTAA2
758
758
  @amexDataTAA3 = amexDataTAA3
759
759
  @amexDataTAA4 = amexDataTAA4
760
-
760
+
761
761
  end
762
762
  end
763
763
 
@@ -1242,13 +1242,13 @@ end
1242
1242
  #{AnetApi/xml/v1/schema/AnetApiSchema.xsd}subsequentAuthInformation
1243
1243
  # originalNetworkTransId - SOAP::SOAPString
1244
1244
  # originalAuthAmount - SOAP::SOAPDecimal
1245
- # reason - MerchantInitTransReasonEnum
1245
+ # reason - MerchantInitTransReasonEnum
1246
1246
  class SubsequentAuthInformation
1247
1247
  include ROXML
1248
1248
  xml_accessor :originalNetworkTransId
1249
- xml_accessor :originalAuthAmount
1250
- xml_accessor :reason #, as: MerchantInitTransReasonEnum
1251
-
1249
+ xml_accessor :originalAuthAmount
1250
+ xml_accessor :reason #, as: MerchantInitTransReasonEnum
1251
+
1252
1252
  def initialize(originalNetworkTransId = nil, originalAuthAmount = nil, reason = nil)
1253
1253
  @originalNetworkTransId = originalNetworkTransId
1254
1254
  @reason = reason
@@ -1272,16 +1272,18 @@ end
1272
1272
  xml_accessor :driversLicense, as: DriversLicenseType
1273
1273
  xml_accessor :taxId
1274
1274
  xml_accessor :defaultPaymentProfile
1275
- xml_accessor :subsequentAuthInformation, as: SubsequentAuthInformation
1275
+ xml_accessor :subsequentAuthInformation, as: SubsequentAuthInformation
1276
+ xml_accessor :excludeFromAccountUpdater
1276
1277
 
1277
- def initialize(customerType = nil, billTo = nil, payment = nil, driversLicense = nil, taxId = nil, defaultPaymentProfile = nil, subsequentAuthInformation = nil)
1278
+ def initialize(customerType = nil, billTo = nil, payment = nil, driversLicense = nil, taxId = nil, defaultPaymentProfile = nil, subsequentAuthInformation = nil, excludeFromAccountUpdater = nil)
1278
1279
  @customerType = customerType
1279
1280
  @billTo = billTo
1280
1281
  @payment = payment
1281
1282
  @driversLicense = driversLicense
1282
1283
  @taxId = taxId
1283
1284
  @defaultPaymentProfile = defaultPaymentProfile
1284
- @subsequentAuthInformation = subsequentAuthInformation
1285
+ @subsequentAuthInformation = subsequentAuthInformation
1286
+ @excludeFromAccountUpdater = excludeFromAccountUpdater
1285
1287
  end
1286
1288
  end
1287
1289
 
@@ -1291,6 +1293,8 @@ end
1291
1293
  # payment - PaymentType
1292
1294
  # driversLicense - DriversLicenseType
1293
1295
  # taxId - SOAP::SOAPString
1296
+ # defaultPaymentProfile - SOAP::SOAPBoolean
1297
+ # subsequentAuthInformation - SubsequentAuthInformation
1294
1298
  # customerPaymentProfileId - (any)
1295
1299
  class CustomerPaymentProfileExType
1296
1300
  include ROXML
@@ -1299,14 +1303,18 @@ end
1299
1303
  xml_accessor :payment, as: PaymentType
1300
1304
  xml_accessor :driversLicense, as: DriversLicenseType
1301
1305
  xml_accessor :taxId
1306
+ xml_accessor :defaultPaymentProfile
1307
+ xml_accessor :subsequentAuthInformation, as: SubsequentAuthInformation
1302
1308
  xml_accessor :customerPaymentProfileId
1303
1309
 
1304
- def initialize(customerType = nil, billTo = nil, payment = nil, driversLicense = nil, taxId = nil, customerPaymentProfileId = nil)
1310
+ def initialize(customerType = nil, billTo = nil, payment = nil, driversLicense = nil, taxId = nil, defaultPaymentProfile = nil, subsequentAuthInformation = nil, customerPaymentProfileId = nil)
1305
1311
  @customerType = customerType
1306
1312
  @billTo = billTo
1307
1313
  @payment = payment
1308
1314
  @driversLicense = driversLicense
1309
1315
  @taxId = taxId
1316
+ @defaultPaymentProfile = defaultPaymentProfile
1317
+ @subsequentAuthInformation = subsequentAuthInformation
1310
1318
  @customerPaymentProfileId = customerPaymentProfileId
1311
1319
  end
1312
1320
  end
@@ -1327,6 +1335,7 @@ end
1327
1335
  # billTo - CustomerAddressType
1328
1336
  # customerProfileId - (any)
1329
1337
  # customerPaymentProfileId - (any)
1338
+ # defaultPaymentProfile - SOAP::SOAPBoolean
1330
1339
  # payment - PaymentMaskedType
1331
1340
  # driversLicense - DriversLicenseMaskedType
1332
1341
  # taxId - SOAP::SOAPString
@@ -1342,10 +1351,11 @@ end
1342
1351
  xml_accessor :driversLicense, as: DriversLicenseMaskedType
1343
1352
  xml_accessor :taxId
1344
1353
  xml_accessor :subscriptionIds, as: SubscriptionIdList
1345
- xml_accessor :originalNetworkTransId
1346
- xml_accessor :originalAuthAmount
1354
+ xml_accessor :originalNetworkTransId
1355
+ xml_accessor :originalAuthAmount
1356
+ xml_accessor :excludeFromAccountUpdater
1347
1357
 
1348
- def initialize(customerType = nil, billTo = nil, customerProfileId = nil, customerPaymentProfileId = nil, payment = nil, driversLicense = nil, taxId = nil, subscriptionIds = nil, defaultPaymentProfile = nil, originalNetworkTransId = nil, originalAuthAmount = nil)
1358
+ def initialize(customerType = nil, billTo = nil, customerProfileId = nil, customerPaymentProfileId = nil, payment = nil, driversLicense = nil, taxId = nil, subscriptionIds = nil, defaultPaymentProfile = nil, originalNetworkTransId = nil, originalAuthAmount = nil, excludeFromAccountUpdater = nil)
1349
1359
  @customerType = customerType
1350
1360
  @billTo = billTo
1351
1361
  @customerProfileId = customerProfileId
@@ -1355,8 +1365,9 @@ end
1355
1365
  @taxId = taxId
1356
1366
  @subscriptionIds = subscriptionIds
1357
1367
  @defaultPaymentProfile = defaultPaymentProfile
1358
- @originalAuthAmount = originalAuthAmount
1359
- @originalNetworkTransId = originalNetworkTransId
1368
+ @originalAuthAmount = originalAuthAmount
1369
+ @originalNetworkTransId = originalNetworkTransId
1370
+ @excludeFromAccountUpdater = excludeFromAccountUpdater
1360
1371
  end
1361
1372
  end
1362
1373
 
@@ -1474,7 +1485,7 @@ end
1474
1485
  @profileType = profileType
1475
1486
  end
1476
1487
  end
1477
-
1488
+
1478
1489
 
1479
1490
  # {AnetApi/xml/v1/schema/AnetApiSchema.xsd}lineItemType
1480
1491
  # itemId - SOAP::SOAPString
@@ -1531,7 +1542,7 @@ end
1531
1542
  xml_accessor :discountAmount, as: BigDecimal
1532
1543
  xml_accessor :taxIncludedInTotal
1533
1544
  xml_accessor :taxIsAfterDiscount
1534
-
1545
+
1535
1546
  def initialize(itemId = nil, name = nil, description = nil, quantity = nil, unitPrice = nil, taxable = nil, unitOfMeasure = nil,typeOfSupply = nil, taxRate = nil, taxAmount = nil, nationalTax = nil, localTax = nil, vatRate = nil, alternateTaxId = nil, alternateTaxType = nil, alternateTaxTypeApplied = nil, alternateTaxRate = nil, alternateTaxAmount = nil, totalAmount = nil, commodityCode = nil, productCode = nil, productSKU = nil, discountRate = nil, discountAmount = nil, taxIncludedInTotal = nil, taxIsAfterDiscount = nil)
1536
1547
  @itemId = itemId
1537
1548
  @name = name
@@ -1559,7 +1570,7 @@ end
1559
1570
  @discountAmount = discountAmount
1560
1571
  @taxIncludedInTotal = taxIncludedInTotal
1561
1572
  @taxIsAfterDiscount = taxIsAfterDiscount
1562
-
1573
+
1563
1574
  end
1564
1575
  end
1565
1576
 
@@ -1577,20 +1588,20 @@ end
1577
1588
  # isFirstRecurringPayment - SOAP::SOAPBoolean
1578
1589
  # isFirstSubsequentAuth - SOAP::SOAPBoolean
1579
1590
  # isSubsequentAuth - SOAP::SOAPBoolean
1580
- # isStoredCredentials - SOAP::SOAPBoolean
1591
+ # isStoredCredentials - SOAP::SOAPBoolean
1581
1592
  class ProcessingOptions
1582
1593
  include ROXML
1583
1594
  xml_accessor :isFirstRecurringPayment
1584
1595
  xml_accessor :isFirstSubsequentAuth
1585
1596
  xml_accessor :isSubsequentAuth
1586
1597
  xml_accessor :isStoredCredentials
1587
-
1598
+
1588
1599
  def initialize(isFirstRecurringPayment = nil, isFirstSubsequentAuth = nil, isSubsequentAuth = nil, isStoredCredentials = nil)
1589
1600
  @isFirstRecurringPayment = isFirstRecurringPayment
1590
1601
  @isFirstSubsequentAuth = isFirstSubsequentAuth
1591
1602
  @isSubsequentAuth = isSubsequentAuth
1592
1603
  @isStoredCredentials = isStoredCredentials
1593
-
1604
+
1594
1605
  end
1595
1606
  end
1596
1607
 
@@ -1599,13 +1610,13 @@ end
1599
1610
  Pre = AuthIndicatorEnum.new("pre")
1600
1611
  Final = AuthIndicatorEnum.new("final")
1601
1612
  end
1602
-
1613
+
1603
1614
  #{AnetApi/xml/v1/schema/AnetApiSchema.xsd}authorizationIndicatorType
1604
1615
  # authorizationIndicator - AuthIndicatorEnum
1605
1616
  class AuthorizationIndicatorType
1606
1617
  include ROXML
1607
1618
  xml_accessor :authorizationIndicator #, as: AuthIndicatorEnum
1608
-
1619
+
1609
1620
  def initialize(authorizationIndicator = nil)
1610
1621
  @authorizationIndicator = authorizationIndicator
1611
1622
  end
@@ -1644,7 +1655,7 @@ end
1644
1655
  xml_accessor :splitTenderId
1645
1656
  xml_accessor :processingOptions
1646
1657
  xml_accessor :subsequentAuthInformation
1647
- xml_accessor :authorizationIndicatorType
1658
+ xml_accessor :authorizationIndicatorType
1648
1659
 
1649
1660
  def initialize(amount = nil, tax = nil, shipping = nil, duty = nil, lineItems = [], customerProfileId = nil, customerPaymentProfileId = nil, customerShippingAddressId = nil, order = nil, taxExempt = nil, recurringBilling = nil, cardCode = nil, splitTenderId = nil, processingOptions = nil, subsequentAuthInformation = nil, authorizationIndicatorType = nil)
1650
1661
  @amount = amount
@@ -1662,7 +1673,7 @@ end
1662
1673
  @splitTenderId = splitTenderId
1663
1674
  @processingOptions = processingOptions
1664
1675
  @subsequentAuthInformation = subsequentAuthInformation
1665
- @authorizationIndicatorType = authorizationIndicatorType
1676
+ @authorizationIndicatorType = authorizationIndicatorType
1666
1677
  end
1667
1678
  end
1668
1679
 
@@ -2219,7 +2230,7 @@ end
2219
2230
  # nationalTaxAmount - SOAP::SOAPDecimal
2220
2231
  # localTaxAmount - SOAP::SOAPDecimal
2221
2232
  # alternateTaxAmount - SOAP::SOAPDecimal
2222
- # alternateTaxId - SOAP::SOAPString
2233
+ # alternateTaxId - SOAP::SOAPString
2223
2234
  # vatTaxRate - SOAP::SOAPDecimal
2224
2235
  # vatTaxAmount - SOAP::SOAPDecimal
2225
2236
  class OtherTaxType
@@ -2356,7 +2367,7 @@ end
2356
2367
  xml_accessor :surcharge, as: ExtendedAmountType
2357
2368
  xml_accessor :employeeId
2358
2369
  xml_accessor :tip, as: ExtendedAmountType
2359
- xml_accessor :otherTax, as: OtherTaxType
2370
+ xml_accessor :otherTax, as: OtherTaxType
2360
2371
  xml_accessor :shipFrom, as: NameAndAddressType
2361
2372
  xml_accessor :networkTransId
2362
2373
  xml_accessor :originalNetworkTransId
@@ -2653,7 +2664,7 @@ end
2653
2664
  xml_accessor :emvResponse, as: EmvResponse
2654
2665
  xml_accessor :transHashSha2
2655
2666
  xml_accessor :profile, as: CustomerProfileIdType
2656
- xml_accessor :networkTransId
2667
+ xml_accessor :networkTransId
2657
2668
 
2658
2669
  def initialize(responseCode = nil, rawResponseCode = nil, authCode = nil, avsResultCode = nil, cvvResultCode = nil, cavvResultCode = nil, transId = nil, refTransID = nil, transHash = nil, testRequest = nil, accountNumber = nil, accountType = nil, splitTenderId = nil, prePaidCard = nil, messages = nil, errors = nil, splitTenderPayments = nil, userFields = nil, shipTo = nil, secureAcceptance = nil, emvResponse = nil, transHashSha2 = nil, profile = nil,networkTransId = nil)
2659
2670
  @responseCode = responseCode
@@ -3119,8 +3130,8 @@ end
3119
3130
  TestRequest = SettingNameEnum.new("testRequest")
3120
3131
  TypeEmailReceipt = SettingNameEnum.new("typeEmailReceipt")
3121
3132
  HostedProfilePaymentOptions = SettingNameEnum.new("hostedProfilePaymentOptions")
3122
- HostedProfileSaveButtonText = SettingNameEnum.new("hostedProfileSaveButtonText")
3123
- HostedPaymentVisaCheckoutOptions = SettingNameEnum.new("hostedPaymentVisaCheckoutOptions")
3133
+ HostedProfileSaveButtonText = SettingNameEnum.new("hostedProfileSaveButtonText")
3134
+ HostedPaymentVisaCheckoutOptions = SettingNameEnum.new("hostedPaymentVisaCheckoutOptions")
3124
3135
  end
3125
3136
 
3126
3137
  # {AnetApi/xml/v1/schema/AnetApiSchema.xsd}ARBGetSubscriptionListSearchTypeEnum
@@ -3457,6 +3468,7 @@ end
3457
3468
  # refId - SOAP::SOAPString
3458
3469
  # customerProfileId - (any)
3459
3470
  # address - CustomerAddressType
3471
+ # defaultShippingAddress - SOAP::SOAPBoolean
3460
3472
  class CreateCustomerShippingAddressRequest
3461
3473
  include ROXML
3462
3474
  xml_accessor :merchantAuthentication
@@ -3502,7 +3514,9 @@ end
3502
3514
  # refId - SOAP::SOAPString
3503
3515
  # transId - (any)
3504
3516
  # customer - CustomerProfileBaseType
3505
- # customerProfileId - NumericStringsType
3517
+ # customerProfileId - (any)
3518
+ # defaultPaymentProfile - SOAP::SOAPBoolean
3519
+ # defaultShippingAddress - SOAP::SOAPBoolean
3506
3520
  # profileType - CustomerProfileTypeEnum
3507
3521
  class CreateCustomerProfileFromTransactionRequest
3508
3522
  include ROXML
@@ -3510,7 +3524,7 @@ end
3510
3524
  xml_accessor :refId
3511
3525
  xml_accessor :transId
3512
3526
  xml_accessor :customer, as: CustomerProfileBaseType
3513
- xml_accessor :customerProfileId, as: NumericStringsType
3527
+ xml_accessor :customerProfileId # This should NOT be NumericStringsType because NumericStringsType is an array type, not the base type.
3514
3528
  xml_accessor :defaultPaymentProfile
3515
3529
  xml_accessor :defaultShippingAddress
3516
3530
  xml_accessor :profileType
@@ -3647,6 +3661,7 @@ end
3647
3661
  # refId - SOAP::SOAPString
3648
3662
  # messages - MessagesType
3649
3663
  # sessionToken - SOAP::SOAPString
3664
+ # defaultShippingAddress - SOAP::SOAPBoolean
3650
3665
  # address - CustomerAddressExType
3651
3666
  # subscriptionIds - SubscriptionIdList
3652
3667
  class GetCustomerShippingAddressResponse
@@ -3676,7 +3691,7 @@ end
3676
3691
  include ROXML
3677
3692
  xml_accessor :merchantAuthentication
3678
3693
  xml_accessor :refId
3679
- xml_accessor :profile, as: CustomerProfileExType
3694
+ xml_accessor :profile, as: CustomerProfileInfoExType
3680
3695
 
3681
3696
  def initialize(merchantAuthentication = nil, refId = nil, profile = nil)
3682
3697
  @merchantAuthentication = merchantAuthentication
@@ -3750,6 +3765,7 @@ end
3750
3765
  # refId - SOAP::SOAPString
3751
3766
  # customerProfileId - (any)
3752
3767
  # address - CustomerAddressExType
3768
+ # defaultShippingAddress - SOAP::SOAPBoolean
3753
3769
  class UpdateCustomerShippingAddressRequest
3754
3770
  include ROXML
3755
3771
  xml_accessor :merchantAuthentication
@@ -4699,7 +4715,7 @@ end
4699
4715
  xml_accessor :subsequentAuthInformation, as: SubsequentAuthInformation
4700
4716
  xml_accessor :otherTax, as: OtherTaxType
4701
4717
  xml_accessor :shipFrom, as: NameAndAddressType
4702
- xml_accessor :authorizationIndicatorType, as: AuthorizationIndicatorType
4718
+ xml_accessor :authorizationIndicatorType, as: AuthorizationIndicatorType
4703
4719
 
4704
4720
  def initialize(transactionType = nil, amount = nil, currencyCode = nil, payment = nil, profile = nil, solution = nil, callId = nil, authCode = nil, refTransId = nil, splitTenderId = nil, order = nil, lineItems = nil, tax = nil, duty = nil, shipping = nil, taxExempt = nil, poNumber = nil, customer = nil, billTo = nil, shipTo = nil, customerIP = nil, cardholderAuthentication = nil, retail = nil, transactionSettings = nil, userFields = nil, surcharge = nil, merchantDescriptor = nil, subMerchant = nil, tip = nil, employeeId = nil, processingOptions = nil, subsequentAuthInformation= nil, otherTax = nil, shipFrom = nil, authorizationIndicatorType = nil)
4705
4721
  @transactionType = transactionType
@@ -4736,7 +4752,7 @@ end
4736
4752
  @subsequentAuthInformation= subsequentAuthInformation
4737
4753
  @otherTax = otherTax
4738
4754
  @shipFrom = shipFrom
4739
- @authorizationIndicatorType = authorizationIndicatorType
4755
+ @authorizationIndicatorType = authorizationIndicatorType
4740
4756
  end
4741
4757
  end
4742
4758
 
@@ -4781,6 +4797,7 @@ end
4781
4797
  end
4782
4798
 
4783
4799
  # {AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerPaymentProfileListItemType
4800
+ # defaultPaymentProfile - SOAP::SOAPBoolean
4784
4801
  # customerPaymentProfileId - SOAP::SOAPInt
4785
4802
  # customerProfileId - SOAP::SOAPInt
4786
4803
  # billTo - CustomerAddressType
@@ -4794,18 +4811,20 @@ end
4794
4811
  xml_accessor :customerProfileId
4795
4812
  xml_accessor :billTo, as: CustomerAddressType
4796
4813
  xml_accessor :payment, as: PaymentMaskedType
4797
- xml_accessor :originalNetworkTransId
4798
- xml_accessor :originalAuthAmount
4799
-
4814
+ xml_accessor :originalNetworkTransId
4815
+ xml_accessor :originalAuthAmount
4816
+ xml_accessor :excludeFromAccountUpdater
4817
+
4800
4818
 
4801
- def initialize(customerPaymentProfileId = nil, customerProfileId = nil, billTo = nil, payment = nil, defaultPaymentProfile = nil, originalNetworkTransId = nil, originalAuthAmount = nil)
4819
+ def initialize(customerPaymentProfileId = nil, customerProfileId = nil, billTo = nil, payment = nil, defaultPaymentProfile = nil, originalNetworkTransId = nil, originalAuthAmount = nil, excludeFromAccountUpdater = nil)
4802
4820
  @customerPaymentProfileId = customerPaymentProfileId
4803
4821
  @customerProfileId = customerProfileId
4804
4822
  @billTo = billTo
4805
4823
  @payment = payment
4806
4824
  @defaultPaymentProfile = defaultPaymentProfile
4807
- @originalNetworkTransId = originalNetworkTransId
4808
- @originalAuthAmount = originalAuthAmount
4825
+ @originalNetworkTransId = originalNetworkTransId
4826
+ @originalAuthAmount = originalAuthAmount
4827
+ @excludeFromAccountUpdater = excludeFromAccountUpdater
4809
4828
  end
4810
4829
  end
4811
4830
 
@@ -5269,7 +5288,7 @@ end
5269
5288
  VisaCheckout = PaymentMethodsTypeEnum.new("VisaCheckout")
5270
5289
  ApplePay = PaymentMethodsTypeEnum.new("ApplePay")
5271
5290
  AndroidPay = PaymentMethodsTypeEnum.new("AndroidPay")
5272
- GooglePay = PaymentMethodsTypeEnum.new("GooglePay")
5291
+ GooglePay = PaymentMethodsTypeEnum.new("GooglePay")
5273
5292
  end
5274
5293
 
5275
5294
  # {AnetApi/xml/v1/schema/AnetApiSchema.xsd}ArrayOfPaymentMethod
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authorizenet
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Authorize.Net
@@ -72,20 +72,6 @@ dependencies:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: 3.2.0
75
- - !ruby/object:Gem::Dependency
76
- name: appraisal
77
- requirement: !ruby/object:Gem::Requirement
78
- requirements:
79
- - - ">="
80
- - !ruby/object:Gem::Version
81
- version: '0'
82
- type: :development
83
- prerelease: false
84
- version_requirements: !ruby/object:Gem::Requirement
85
- requirements:
86
- - - ">="
87
- - !ruby/object:Gem::Version
88
- version: '0'
89
75
  - !ruby/object:Gem::Dependency
90
76
  name: rake
91
77
  requirement: !ruby/object:Gem::Requirement
@@ -120,34 +106,6 @@ dependencies:
120
106
  - - "~>"
121
107
  - !ruby/object:Gem::Version
122
108
  version: 3.9.0
123
- - !ruby/object:Gem::Dependency
124
- name: simplecov
125
- requirement: !ruby/object:Gem::Requirement
126
- requirements:
127
- - - ">="
128
- - !ruby/object:Gem::Version
129
- version: '0'
130
- type: :development
131
- prerelease: false
132
- version_requirements: !ruby/object:Gem::Requirement
133
- requirements:
134
- - - ">="
135
- - !ruby/object:Gem::Version
136
- version: '0'
137
- - !ruby/object:Gem::Dependency
138
- name: scrutinizer-ocular
139
- requirement: !ruby/object:Gem::Requirement
140
- requirements:
141
- - - ">="
142
- - !ruby/object:Gem::Version
143
- version: '0'
144
- type: :development
145
- prerelease: false
146
- version_requirements: !ruby/object:Gem::Requirement
147
- requirements:
148
- - - ">="
149
- - !ruby/object:Gem::Version
150
- version: '0'
151
109
  description: Authorize.Net SDK includes standard payments, recurring billing, and
152
110
  customer profiles
153
111
  email: developer@authorize.net
@@ -186,10 +144,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
186
144
  requirements:
187
145
  - - ">="
188
146
  - !ruby/object:Gem::Version
189
- version: 1.3.6
147
+ version: 1.3.7
190
148
  requirements: []
191
149
  rubyforge_project:
192
- rubygems_version: 2.7.6
150
+ rubygems_version: 2.7.6.2
193
151
  signing_key:
194
152
  specification_version: 4
195
153
  summary: Authorize.Net Payments SDK