@@ -1293,6 +1293,8 @@ def initialize(customerType = nil, billTo = nil, payment = nil, driversLicense =
1293
1293
# payment - PaymentType
1294
1294
# driversLicense - DriversLicenseType
1295
1295
# taxId - SOAP::SOAPString
1296
+ # defaultPaymentProfile - SOAP::SOAPBoolean
1297
+ # subsequentAuthInformation - SubsequentAuthInformation
1296
1298
# customerPaymentProfileId - (any)
1297
1299
class CustomerPaymentProfileExType
1298
1300
include ROXML
@@ -1301,14 +1303,18 @@ class CustomerPaymentProfileExType
1301
1303
xml_accessor :payment , as : PaymentType
1302
1304
xml_accessor :driversLicense , as : DriversLicenseType
1303
1305
xml_accessor :taxId
1306
+ xml_accessor :defaultPaymentProfile
1307
+ xml_accessor :subsequentAuthInformation , as : SubsequentAuthInformation
1304
1308
xml_accessor :customerPaymentProfileId
1305
1309
1306
- 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 )
1307
1311
@customerType = customerType
1308
1312
@billTo = billTo
1309
1313
@payment = payment
1310
1314
@driversLicense = driversLicense
1311
1315
@taxId = taxId
1316
+ @defaultPaymentProfile = defaultPaymentProfile
1317
+ @subsequentAuthInformation = subsequentAuthInformation
1312
1318
@customerPaymentProfileId = customerPaymentProfileId
1313
1319
end
1314
1320
end
@@ -1329,6 +1335,7 @@ def initialize(subscriptionId = nil)
1329
1335
# billTo - CustomerAddressType
1330
1336
# customerProfileId - (any)
1331
1337
# customerPaymentProfileId - (any)
1338
+ # defaultPaymentProfile - SOAP::SOAPBoolean
1332
1339
# payment - PaymentMaskedType
1333
1340
# driversLicense - DriversLicenseMaskedType
1334
1341
# taxId - SOAP::SOAPString
@@ -3461,6 +3468,7 @@ def initialize(refId = nil, messages = nil, sessionToken = nil, customerProfileI
3461
3468
# refId - SOAP::SOAPString
3462
3469
# customerProfileId - (any)
3463
3470
# address - CustomerAddressType
3471
+ # defaultShippingAddress - SOAP::SOAPBoolean
3464
3472
class CreateCustomerShippingAddressRequest
3465
3473
include ROXML
3466
3474
xml_accessor :merchantAuthentication
@@ -3506,15 +3514,17 @@ def initialize(refId = nil, messages = nil, sessionToken = nil, customerProfileI
3506
3514
# refId - SOAP::SOAPString
3507
3515
# transId - (any)
3508
3516
# customer - CustomerProfileBaseType
3509
- # customerProfileId - NumericStringsType
3517
+ # customerProfileId - (any)
3518
+ # defaultPaymentProfile - SOAP::SOAPBoolean
3519
+ # defaultShippingAddress - SOAP::SOAPBoolean
3510
3520
# profileType - CustomerProfileTypeEnum
3511
3521
class CreateCustomerProfileFromTransactionRequest
3512
3522
include ROXML
3513
3523
xml_accessor :merchantAuthentication , as : MerchantAuthenticationType
3514
3524
xml_accessor :refId
3515
3525
xml_accessor :transId
3516
3526
xml_accessor :customer , as : CustomerProfileBaseType
3517
- xml_accessor :customerProfileId , as : NumericStringsType
3527
+ xml_accessor :customerProfileId # This should NOT be NumericStringsType because NumericStringsType is an array type, not the base type.
3518
3528
xml_accessor :defaultPaymentProfile
3519
3529
xml_accessor :defaultShippingAddress
3520
3530
xml_accessor :profileType
@@ -3651,6 +3661,7 @@ def initialize(merchantAuthentication = nil, refId = nil, customerProfileId = ni
3651
3661
# refId - SOAP::SOAPString
3652
3662
# messages - MessagesType
3653
3663
# sessionToken - SOAP::SOAPString
3664
+ # defaultShippingAddress - SOAP::SOAPBoolean
3654
3665
# address - CustomerAddressExType
3655
3666
# subscriptionIds - SubscriptionIdList
3656
3667
class GetCustomerShippingAddressResponse
@@ -3754,6 +3765,7 @@ def initialize(refId = nil, messages = nil, sessionToken = nil, validationDirect
3754
3765
# refId - SOAP::SOAPString
3755
3766
# customerProfileId - (any)
3756
3767
# address - CustomerAddressExType
3768
+ # defaultShippingAddress - SOAP::SOAPBoolean
3757
3769
class UpdateCustomerShippingAddressRequest
3758
3770
include ROXML
3759
3771
xml_accessor :merchantAuthentication
@@ -4785,6 +4797,7 @@ def initialize(refId = nil, messages = nil, sessionToken = nil, transactionRespo
4785
4797
end
4786
4798
4787
4799
# {AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerPaymentProfileListItemType
4800
+ # defaultPaymentProfile - SOAP::SOAPBoolean
4788
4801
# customerPaymentProfileId - SOAP::SOAPInt
4789
4802
# customerProfileId - SOAP::SOAPInt
4790
4803
# billTo - CustomerAddressType
0 commit comments