diff --git a/.github/workflows/dotnet-workflow.yml b/.github/workflows/dotnet-workflow.yml new file mode 100644 index 00000000..3415898d --- /dev/null +++ b/.github/workflows/dotnet-workflow.yml @@ -0,0 +1,111 @@ +name: Authorize.net DotNet CI +on: + push: + pull_request: + workflow_dispatch: +env: + sdk_dotnet: 'sdk-dotnet' + sample_code_csharp: 'sample-code-csharp' +jobs: + workflow-job-build: + defaults: + run: + shell: bash + runs-on: windows-2019 + steps: + - name: Checkout authorizenet/sdk-dotnet + uses: actions/checkout@v4 + with: + path: ${{env.sdk_dotnet}} + + - name: Setup MSBuild + uses: microsoft/setup-msbuild@v2 + + - name: Compile the SDK + shell: pwsh + run: | + cd $Env:sdk_dotnet + (Get-Content ./AuthorizeNETtest/App.config) | ForEach-Object { $_ -replace '', '' } | ForEach-Object { $_ -replace '', '' } | ForEach-Object { $_ -replace '', '' } | Set-Content ./AuthorizeNETtest/App.config + nuget install ./AuthorizeNETtest/packages.config -OutputDirectory packages + msbuild -version + msbuild "./AuthorizeNET.sln" -property:Configuration=Release -t:rebuild + Write-Output "Build Successful" + nuget pack AuthorizeNet.nuspec + + - name: Upload SDK Nupkg + uses: actions/upload-artifact@v4 + with: + name: sdk-nupkg + path: ${{env.sdk_dotnet}}/*.nupkg + + - name: Run UnitTests + uses: josepho0918/vstest-action@main + with: + testAssembly: AuthorizeNETtest.dll + searchFolder: ${{env.sdk_dotnet}}/AuthorizeNETtest/bin/Release/ + runInParallel: true + + workflow-job-integration-tests: + defaults: + run: + shell: bash + strategy: + fail-fast: false + matrix: + operating-system: [windows-latest, windows-2019] + net-framework-version: [4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1] + exclude: + - operating-system: windows-2019 + net-framework-version: 4.8.1 + - operating-system: windows-latest + net-framework-version: 4.6.1 + needs: workflow-job-build + runs-on: ${{matrix.operating-system}} + steps: + - name: Download SDK from previous job + uses: actions/download-artifact@v4 + with: + name: sdk-nupkg + path: sdk-nupkg + + - name: Checkout authorizenet/sample-code-csharp + uses: actions/checkout@v4 + with: + repository: 'authorizenet/sample-code-csharp' + ref: 'future' + path: ${{env.sample_code_csharp}} + + - name: Setup MSBuild + uses: microsoft/setup-msbuild@v2 + + - name: Compile the Sample Application + shell: pwsh + run: | + $clientSdkFolderName = (Get-ChildItem -Path sdk-nupkg -Filter "*nupkg" | Select-Object -First 1).BaseName + $clientSdkVersion = $clientSdkFolderName.Substring(13) + nuget Sources Add -Name "temporary_nuget_source" -Source ((Get-Location).Path + "\sdk-nupkg") + + cd $Env:sample_code_csharp + (Get-Content ./packages.config) | ForEach-Object { $_ -replace '.*', "" } | Set-Content ./packages.config + + nuget install ./packages.config -OutputDirectory packages -Source temporary_nuget_source -Source https://api.nuget.org/v3/index.json + nuget install ./SampleCodeTest/packages.config -OutputDirectory packages -Source temporary_nuget_source -Source https://api.nuget.org/v3/index.json + + (Get-Content ./SampleCode.csproj) | ForEach-Object { $_ -replace "()(.)+(AuthorizeNet.dll)", "packages\\$clientSdkFolderName\\lib\\AuthorizeNet.dll" } | Set-Content ./SampleCode.csproj + + (Get-Content ./SampleCodeTest/SampleCodeTest.csproj) | ForEach-Object { $_ -replace "()(.)+(AuthorizeNet.dll)", "..\\packages\\$clientSdkFolderName\\lib\\AuthorizeNet.dll" } | Set-Content ./SampleCodeTest/SampleCodeTest.csproj + + (Get-Content ./SampleCode.csproj) | ForEach-Object { $_ -replace "()(.)+()", "v${{matrix.net-framework-version}}" } | Set-Content ./SampleCode.csproj + + (Get-Content ./SampleCodeTest/SampleCodeTest.csproj) | ForEach-Object { $_ -replace "()(.)+()", "v${{matrix.net-framework-version}}" } | Set-Content ./SampleCodeTest/SampleCodeTest.csproj + + msbuild -version + msbuild "./SampleCode.sln" -property:Configuration=Debug -t:rebuild + Write-Output "Build Successful" + + - name: Run UnitTests + uses: josepho0918/vstest-action@main + with: + testAssembly: SampleCodeTest.dll + searchFolder: ${{env.sample_code_csharp}}/SampleCodeTest/bin/Debug/ + runInParallel: true \ No newline at end of file diff --git a/.gitignore b/.gitignore index fd5204b5..6fee2142 100644 --- a/.gitignore +++ b/.gitignore @@ -181,3 +181,6 @@ UpgradeLog*.htm # Microsoft Fakes FakesAssemblies/ +/NUnit.ConsoleRunner.3.13.0 +/.vs +/nuget.exe diff --git a/Authorize.NET/Api/Contracts/V1/AnetApiSchema.generated.cs b/Authorize.NET/Api/Contracts/V1/AnetApiSchema.generated.cs index e4376c52..302e3b5e 100644 --- a/Authorize.NET/Api/Contracts/V1/AnetApiSchema.generated.cs +++ b/Authorize.NET/Api/Contracts/V1/AnetApiSchema.generated.cs @@ -298,6 +298,13 @@ public partial class customerPaymentProfileListItemType : object, System.Compone [System.Xml.Serialization.XmlIgnoreAttribute()] public bool originalAuthAmountSpecified; + /// + public bool excludeFromAccountUpdater; + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool excludeFromAccountUpdaterSpecified; + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; protected void RaisePropertyChanged(string propertyName) { @@ -3502,6 +3509,13 @@ public partial class customerPaymentProfileMaskedType : customerPaymentProfileBa /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool originalAuthAmountSpecified; + + /// + public bool excludeFromAccountUpdater; + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool excludeFromAccountUpdaterSpecified; } /// @@ -3558,6 +3572,13 @@ public partial class customerPaymentProfileType : customerPaymentProfileBaseType /// public subsequentAuthInformation subsequentAuthInformation; + + /// + public bool excludeFromAccountUpdater; + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool excludeFromAccountUpdaterSpecified; } /// @@ -5097,7 +5118,7 @@ public partial class getCustomerShippingAddressResponse : ANetApiResponse { public partial class updateCustomerProfileRequest : ANetApiRequest { /// - public customerProfileExType profile; + public customerProfileInfoExType profile; } /// diff --git a/Authorize.NET/Api/Contracts/V1/RequestFactoryWithSpecified.cs b/Authorize.NET/Api/Contracts/V1/RequestFactoryWithSpecified.cs index 958d4896..05a6c5ae 100644 --- a/Authorize.NET/Api/Contracts/V1/RequestFactoryWithSpecified.cs +++ b/Authorize.NET/Api/Contracts/V1/RequestFactoryWithSpecified.cs @@ -43,9 +43,10 @@ public static void customerPaymentProfileListItemType(customerPaymentProfileList { if (null != argument) { - if(argument.defaultPaymentProfile) { argument.defaultPaymentProfileSpecified=true;} + if(argument.defaultPaymentProfile) { argument.defaultPaymentProfileSpecified=true; } customerAddressType(argument.billTo); paymentMaskedType(argument.payment); + if(argument.excludeFromAccountUpdater) { argument.excludeFromAccountUpdaterSpecified=true; } } } @@ -560,7 +561,7 @@ public static void transactionDetailsType(transactionDetailsType argument) if (null != argument.returnedItems) { foreach (var value in argument.returnedItems) { returnedItemType(value); } } solutionType(argument.solution); - if(null != argument.emvDetails){ foreach( var value in argument.emvDetails) { transactionDetailsTypeTag(value);} } + if(null != argument.emvDetails){ foreach( var value in argument.emvDetails) { transactionDetailsTypeTag(value); } } customerProfileIdType(argument.profile); extendedAmountType(argument.surcharge); @@ -597,7 +598,7 @@ public static void creditCardMaskedType(creditCardMaskedType argument) if (null != argument) { cardArt(argument.cardArt); - if(argument.isPaymentToken) { argument.isPaymentTokenSpecified=true;} + if(argument.isPaymentToken) { argument.isPaymentTokenSpecified=true; } } } public static void cardArt(cardArt argument) @@ -787,9 +788,10 @@ public static void customerPaymentProfileMaskedType(customerPaymentProfileMasked if (null != argument) { customerPaymentProfileBaseType(argument); - if(argument.defaultPaymentProfile) { argument.defaultPaymentProfileSpecified=true;} + if(argument.defaultPaymentProfile) { argument.defaultPaymentProfileSpecified=true; } paymentMaskedType(argument.payment); driversLicenseMaskedType(argument.driversLicense); + if(argument.excludeFromAccountUpdater) { argument.excludeFromAccountUpdaterSpecified=true; } } } public static void customerPaymentProfileType(customerPaymentProfileType argument) @@ -799,8 +801,9 @@ public static void customerPaymentProfileType(customerPaymentProfileType argumen customerPaymentProfileBaseType(argument); paymentType(argument.payment); driversLicenseType(argument.driversLicense); - if(argument.defaultPaymentProfile) { argument.defaultPaymentProfileSpecified=true;} + if(argument.defaultPaymentProfile) { argument.defaultPaymentProfileSpecified=true; } subsequentAuthInformation(argument.subsequentAuthInformation); + if(argument.excludeFromAccountUpdater) { argument.excludeFromAccountUpdaterSpecified=true; } } } public static void customerPaymentProfileExType(customerPaymentProfileExType argument) @@ -830,7 +833,7 @@ public static void customerProfileMaskedType(customerProfileMaskedType argument) customerProfileExType(argument); if (null != argument.paymentProfiles) { foreach (var value in argument.paymentProfiles) { customerPaymentProfileMaskedType(value); } } if (null != argument.shipToList) { foreach (var value in argument.shipToList) { customerAddressExType(value); } } - if(0 <= argument.profileType) { argument.profileTypeSpecified=true;} + if(0 <= argument.profileType) { argument.profileTypeSpecified=true; } } } public static void customerProfileInfoExType(customerProfileInfoExType argument) @@ -838,7 +841,7 @@ public static void customerProfileInfoExType(customerProfileInfoExType argument) if(null != argument) { customerProfileExType (argument); - if(0 <= argument.profileType) { argument.profileTypeSpecified=true;} + if(0 <= argument.profileType) { argument.profileTypeSpecified=true; } } } public static void customerProfileType(customerProfileType argument) @@ -848,7 +851,7 @@ public static void customerProfileType(customerProfileType argument) customerProfileBaseType(argument); if (null != argument.paymentProfiles) { foreach (var value in argument.paymentProfiles) { customerPaymentProfileType(value); } } if (null != argument.shipToList) { foreach (var value in argument.shipToList) { customerAddressType(value); } } - if(0 <= argument.profileType) { argument.profileTypeSpecified=true;} + if(0 <= argument.profileType) { argument.profileTypeSpecified=true; } } } public static void ContactDetailType(ContactDetailType argument) @@ -1131,17 +1134,17 @@ public static void createCustomerProfileFromTransactionRequest(createCustomerPro if (null != argument) { customerProfileBaseType(argument.customer); - if(argument.defaultPaymentProfile) { argument.defaultPaymentProfileSpecified=true;} - if(argument.defaultShippingAddress) { argument.defaultShippingAddressSpecified=true;} - if(0 <= argument.profileType) { argument.profileTypeSpecified=true;} + if(argument.defaultPaymentProfile) { argument.defaultPaymentProfileSpecified=true; } + if(argument.defaultShippingAddress) { argument.defaultShippingAddressSpecified=true; } + if(0 <= argument.profileType) { argument.profileTypeSpecified=true; } } } public static void getCustomerProfileRequest(getCustomerProfileRequest argument) { if (null != argument) { - if(argument.unmaskExpirationDate) { argument.unmaskExpirationDateSpecified=true;} - if(argument.includeIssuerInfo) { argument.includeIssuerInfoSpecified=true;} + if(argument.unmaskExpirationDate) { argument.unmaskExpirationDateSpecified=true; } + if(argument.includeIssuerInfo) { argument.includeIssuerInfoSpecified=true; } } } @@ -1156,7 +1159,7 @@ public static void getCustomerPaymentProfileRequest(getCustomerPaymentProfileReq { if (null != argument) { - if(argument.includeIssuerInfo) { argument.includeIssuerInfoSpecified=true;} + if(argument.includeIssuerInfo) { argument.includeIssuerInfoSpecified=true; } } } @@ -1177,7 +1180,7 @@ public static void getCustomerShippingAddressResponse(getCustomerShippingAddress { if (null != argument) { - if(argument.defaultShippingAddress) { argument.defaultShippingAddressSpecified=true;} + if(argument.defaultShippingAddress) { argument.defaultShippingAddressSpecified=true; } customerAddressExType(argument.address); } } @@ -1220,7 +1223,7 @@ public static void updateCustomerShippingAddressRequest(updateCustomerShippingAd if (null != argument) { customerAddressExType(argument.address); - if(argument.defaultShippingAddress) { argument.defaultShippingAddressSpecified=true;} + if(argument.defaultShippingAddress) { argument.defaultShippingAddressSpecified=true; } } } public static void updateCustomerShippingAddressResponse(updateCustomerShippingAddressResponse argument) @@ -1432,7 +1435,7 @@ public static void getHostedPaymentPageRequest(getHostedPaymentPageRequest argum if(null != argument) { transactionRequestType(argument.transactionRequest); - if(null != argument.hostedPaymentSettings){ foreach( var value in argument.hostedPaymentSettings) { settingType(value);} } + if(null != argument.hostedPaymentSettings){ foreach( var value in argument.hostedPaymentSettings) { settingType(value); } } } } public static void getHostedPaymentPageResponse(getHostedPaymentPageResponse argument) @@ -1607,14 +1610,14 @@ public static void getAUJobSummaryResponse(getAUJobSummaryResponse argument) { if(null != argument) { - if(null != argument.auSummary){ foreach( var value in argument.auSummary) { auResponseType(value);} } + if(null != argument.auSummary){ foreach( var value in argument.auSummary) { auResponseType(value); } } } } public static void getAUJobDetailsRequest(getAUJobDetailsRequest argument) { if(null != argument) { - if(0 <= argument.modifiedTypeFilter) { argument.modifiedTypeFilterSpecified=true;} + if(0 <= argument.modifiedTypeFilter) { argument.modifiedTypeFilterSpecified=true; } Paging(argument.paging); } } @@ -1622,8 +1625,8 @@ public static void getAUJobDetailsResponse(getAUJobDetailsResponse argument) { if(null != argument) { - if(0 <= argument.totalNumInResultSet) { argument.totalNumInResultSetSpecified=true;} - if(null != argument.auDetails){ foreach( var value in argument.auDetails) { auDetailsType(value);} } + if(0 <= argument.totalNumInResultSet) { argument.totalNumInResultSetSpecified=true; } + if(null != argument.auDetails){ foreach( var value in argument.auDetails) { auDetailsType(value); } } } } @@ -1636,8 +1639,8 @@ public static void getMerchantDetailsResponse(getMerchantDetailsResponse argumen { if(null != argument) { - if(argument.isTestMode) { argument.isTestModeSpecified=true;} - if(null != argument.processors){ foreach( var value in argument.processors) { processorType(value);} } + if(argument.isTestMode) { argument.isTestModeSpecified=true; } + if(null != argument.processors){ foreach( var value in argument.processors) { processorType(value); } } customerAddressType(argument.businessInformation); if (null != argument.contactDetails) { foreach (var value in argument.contactDetails) { ContactDetailType(value); } } } diff --git a/Authorize.NET/Api/Contracts/V1/RequestFactoryWithSpecified.generated.org b/Authorize.NET/Api/Contracts/V1/RequestFactoryWithSpecified.generated.org index 525c6163..3c67d8eb 100644 --- a/Authorize.NET/Api/Contracts/V1/RequestFactoryWithSpecified.generated.org +++ b/Authorize.NET/Api/Contracts/V1/RequestFactoryWithSpecified.generated.org @@ -94,6 +94,7 @@ namespace AuthorizeNet.Api.Contracts.V1 customerAddressType(argument.billTo); paymentMaskedType(argument.payment); if(argument.originalAuthAmount) { argument.originalAuthAmountSpecified=true;} + if(argument.excludeFromAccountUpdater) { argument.excludeFromAccountUpdaterSpecified=true;} } } public static void customerAddressType(customerAddressType argument) @@ -738,6 +739,7 @@ transRetailInfoType() { paymentMaskedType(argument.payment); driversLicenseMaskedType(argument.driversLicense); if(argument.originalAuthAmount) { argument.originalAuthAmountSpecified=true;} + if(argument.excludeFromAccountUpdater) { argument.excludeFromAccountUpdaterSpecified=true;} } } public static void driversLicenseMaskedType(driversLicenseMaskedType argument) @@ -755,6 +757,7 @@ transRetailInfoType() { driversLicenseType(argument.driversLicense); if(argument.defaultPaymentProfile) { argument.defaultPaymentProfileSpecified=true;} subsequentAuthInformation(argument.subsequentAuthInformation); + if(argument.excludeFromAccountUpdater) { argument.excludeFromAccountUpdaterSpecified=true;} } } public static void customerPaymentProfileExType(customerPaymentProfileExType argument) @@ -1192,7 +1195,7 @@ transRetailInfoType() { { if(null != argument) { - customerProfileExType(argument.profile); + customerProfileInfoExType(argument.profile); } } public static void updateCustomerProfileResponse(updateCustomerProfileResponse argument) diff --git a/Authorize.NET/AuthorizeNET.csproj b/Authorize.NET/AuthorizeNET.csproj index 809a0741..775e4bf3 100644 --- a/Authorize.NET/AuthorizeNET.csproj +++ b/Authorize.NET/AuthorizeNET.csproj @@ -10,7 +10,7 @@ Properties AuthorizeNet AuthorizeNet - v4.5 + v4.6.1 512 @@ -57,6 +57,7 @@ + @@ -115,9 +116,7 @@ - - - + diff --git a/Authorize.NET/Properties/AssemblyInfo.cs b/Authorize.NET/Properties/AssemblyInfo.cs index 3c712e0b..85eec656 100644 --- a/Authorize.NET/Properties/AssemblyInfo.cs +++ b/Authorize.NET/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ // // See AssemblyFileVersion.cs for Product and Assembly Version //[assembly: AssemblyVersion("2.0.2.0")] -[assembly: AssemblyFileVersion("2.0.3.0")] -[assembly: AssemblyVersion("2.0.3.0")] +[assembly: AssemblyFileVersion("2.0.4.0")] +[assembly: AssemblyVersion("2.0.4.0")] diff --git a/Authorize.NET/Utility/AnetApiSchema.generated.cs b/Authorize.NET/Utility/AnetApiSchema.generated.cs index 80ebbd53..a886e267 100644 --- a/Authorize.NET/Utility/AnetApiSchema.generated.cs +++ b/Authorize.NET/Utility/AnetApiSchema.generated.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.9151 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -9,14 +9,14 @@ //------------------------------------------------------------------------------ // -// This source code was auto-generated by xsd, Version=2.0.50727.3038. +// This source code was auto-generated by xsd, Version=4.6.1055.0. // namespace AuthorizeNet.APICore { using System.Xml.Serialization; /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -32,7 +32,7 @@ public partial class decryptPaymentDataRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -57,7 +57,7 @@ public partial class opaqueDataType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -78,7 +78,7 @@ public partial class processorType { /// [System.Xml.Serialization.XmlIncludeAttribute(typeof(auDeleteType))] [System.Xml.Serialization.XmlIncludeAttribute(typeof(auUpdateType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -108,7 +108,7 @@ public partial class auDetailsType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -120,7 +120,7 @@ public partial class auDeleteType : auDetailsType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -151,7 +151,7 @@ public partial class creditCardMaskedType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -175,7 +175,7 @@ public partial class cardArt { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -190,7 +190,7 @@ public partial class auUpdateType : auDetailsType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -208,7 +208,7 @@ public partial class auResponseType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -243,11 +243,18 @@ public partial class customerPaymentProfileListItemType { /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool originalAuthAmountSpecified; + + /// + public bool excludeFromAccountUpdater; + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool excludeFromAccountUpdaterSpecified; } /// [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerAddressExType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -267,7 +274,7 @@ public partial class customerAddressType : nameAndAddressType { /// [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerAddressType))] [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerAddressExType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -300,7 +307,7 @@ public partial class nameAndAddressType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -312,7 +319,7 @@ public partial class customerAddressExType : customerAddressType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -327,7 +334,7 @@ public partial class paymentMaskedType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -362,7 +369,7 @@ public partial class bankAccountMaskedType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum bankAccountTypeEnum { @@ -378,7 +385,7 @@ public enum bankAccountTypeEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum echeckTypeEnum { @@ -403,7 +410,7 @@ public enum echeckTypeEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -424,7 +431,7 @@ public partial class tokenMaskedType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -439,7 +446,7 @@ public partial class CustomerPaymentProfileSorting { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum CustomerPaymentProfileOrderFieldEnum { @@ -449,7 +456,7 @@ public enum CustomerPaymentProfileOrderFieldEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -473,7 +480,7 @@ public partial class customerProfileSummaryType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -534,7 +541,7 @@ public partial class SubscriptionDetail { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum ARBSubscriptionStatusEnum { @@ -556,7 +563,7 @@ public enum ARBSubscriptionStatusEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum paymentMethodEnum { @@ -572,7 +579,7 @@ public enum paymentMethodEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -587,7 +594,7 @@ public partial class ARBGetSubscriptionListSorting { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum ARBGetSubscriptionListOrderFieldEnum { @@ -621,7 +628,7 @@ public enum ARBGetSubscriptionListOrderFieldEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -636,7 +643,7 @@ public partial class Paging { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -651,7 +658,7 @@ public partial class TransactionListSorting { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum TransactionListOrderFieldEnum { @@ -664,7 +671,7 @@ public enum TransactionListOrderFieldEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -679,7 +686,7 @@ public partial class heldTransactionRequestType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum afdsTransactionEnum { @@ -692,7 +699,7 @@ public enum afdsTransactionEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -715,7 +722,7 @@ public partial class createProfileResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -731,7 +738,7 @@ public partial class messagesType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum messageTypeEnum { @@ -744,7 +751,7 @@ public enum messageTypeEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -759,7 +766,7 @@ public partial class messagesTypeMessage { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -847,7 +854,7 @@ public partial class transactionResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -865,7 +872,7 @@ public partial class transactionResponsePrePaidCard { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -880,7 +887,7 @@ public partial class transactionResponseMessage { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -895,7 +902,7 @@ public partial class transactionResponseError { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -931,7 +938,7 @@ public partial class transactionResponseSplitTenderPayment { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -946,7 +953,7 @@ public partial class userField { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -964,7 +971,7 @@ public partial class transactionResponseSecureAcceptance { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -980,7 +987,7 @@ public partial class transactionResponseEmvResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -998,7 +1005,7 @@ public partial class emvTag { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1016,7 +1023,7 @@ public partial class customerProfileIdType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1040,7 +1047,7 @@ public partial class returnedItemType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1229,7 +1236,7 @@ public partial class transactionDetailsType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1244,7 +1251,7 @@ public partial class subscriptionPaymentType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1259,7 +1266,7 @@ public partial class FDSFilterType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1301,7 +1308,7 @@ public partial class batchDetailsType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1425,7 +1432,7 @@ public partial class batchStatisticType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1438,7 +1445,7 @@ public partial class orderExType : orderType { /// [System.Xml.Serialization.XmlIncludeAttribute(typeof(orderExType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1514,7 +1521,7 @@ public partial class orderType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1532,7 +1539,7 @@ public partial class extendedAmountType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1671,7 +1678,7 @@ public partial class lineItemType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1699,7 +1706,7 @@ public partial class customerDataType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum customerTypeEnum { @@ -1712,7 +1719,7 @@ public enum customerTypeEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1730,7 +1737,7 @@ public partial class driversLicenseType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1748,7 +1755,7 @@ public partial class solutionType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1763,7 +1770,7 @@ public partial class transactionDetailsTypeTag { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1810,7 +1817,7 @@ public partial class otherTaxType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1828,7 +1835,7 @@ public partial class profileTransactionType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1840,7 +1847,7 @@ public partial class profileTransAuthCaptureType : profileTransOrderType { [System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransCaptureOnlyType))] [System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransAuthOnlyType))] [System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransAuthCaptureType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1890,7 +1897,7 @@ public partial class profileTransOrderType : profileTransAmountType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1927,7 +1934,7 @@ public partial class processingOptions { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1953,7 +1960,7 @@ public partial class subsequentAuthInformation { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum merchantInitTransReasonEnum { @@ -1972,7 +1979,7 @@ public enum merchantInitTransReasonEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -1988,7 +1995,7 @@ public partial class authorizationIndicatorType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum authIndicatorEnum { @@ -2007,7 +2014,7 @@ public enum authIndicatorEnum { [System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransCaptureOnlyType))] [System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransAuthOnlyType))] [System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransAuthCaptureType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2032,7 +2039,7 @@ public partial class profileTransAmountType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2065,7 +2072,7 @@ public partial class profileTransRefundType : profileTransAmountType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2086,7 +2093,7 @@ public partial class profileTransPriorAuthCaptureType : profileTransAmountType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2098,7 +2105,7 @@ public partial class profileTransCaptureOnlyType : profileTransOrderType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2107,7 +2114,7 @@ public partial class profileTransAuthOnlyType : profileTransOrderType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2128,7 +2135,7 @@ public partial class profileTransVoidType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2143,7 +2150,7 @@ public partial class paymentProfile { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2168,7 +2175,7 @@ public partial class customerProfilePaymentType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2296,7 +2303,7 @@ public partial class transactionRequestType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2318,7 +2325,7 @@ public partial class paymentType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2356,7 +2363,7 @@ public partial class bankAccountType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2388,7 +2395,7 @@ public partial class creditCardType : creditCardSimpleType { /// [System.Xml.Serialization.XmlIncludeAttribute(typeof(creditCardType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2403,7 +2410,7 @@ public partial class creditCardSimpleType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2421,7 +2428,7 @@ public partial class paymentEmvType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2433,7 +2440,7 @@ public partial class encryptedTrackDataType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2445,7 +2452,7 @@ public partial class KeyBlock { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2463,7 +2470,7 @@ public partial class KeyValue { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum EncodingType { @@ -2476,7 +2483,7 @@ public enum EncodingType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum EncryptionAlgorithmType { @@ -2492,7 +2499,7 @@ public enum EncryptionAlgorithmType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2504,7 +2511,7 @@ public partial class KeyManagementScheme { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2525,7 +2532,7 @@ public partial class KeyManagementSchemeDUKPT { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum OperationType { @@ -2535,7 +2542,7 @@ public enum OperationType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2550,7 +2557,7 @@ public partial class KeyManagementSchemeDUKPTMode { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2562,7 +2569,7 @@ public partial class KeyManagementSchemeDUKPTDeviceInfo { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2574,7 +2581,7 @@ public partial class KeyManagementSchemeDUKPTEncryptedData { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2601,7 +2608,7 @@ public partial class payPalType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2620,7 +2627,7 @@ public partial class creditCardTrackType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IncludeInSchema=false)] public enum ItemChoiceType1 { @@ -2633,7 +2640,7 @@ public enum ItemChoiceType1 { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2648,7 +2655,7 @@ public partial class ccAuthenticationType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2674,7 +2681,7 @@ public transRetailInfoType() { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2689,7 +2696,7 @@ public partial class settingType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2731,7 +2738,7 @@ public partial class subMerchantType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2759,7 +2766,7 @@ public partial class mobileDeviceType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum deviceActivationEnum { @@ -2775,7 +2782,7 @@ public enum deviceActivationEnum { [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerPaymentProfileMaskedType))] [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerPaymentProfileType))] [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerPaymentProfileExType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2794,7 +2801,7 @@ public partial class customerPaymentProfileBaseType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2836,10 +2843,17 @@ public partial class customerPaymentProfileMaskedType : customerPaymentProfileBa /// [System.Xml.Serialization.XmlIgnoreAttribute()] public bool originalAuthAmountSpecified; + + /// + public bool excludeFromAccountUpdater; + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool excludeFromAccountUpdaterSpecified; } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2858,7 +2872,7 @@ public partial class driversLicenseMaskedType { /// [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerPaymentProfileExType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2883,10 +2897,17 @@ public partial class customerPaymentProfileType : customerPaymentProfileBaseType /// public subsequentAuthInformation subsequentAuthInformation; + + /// + public bool excludeFromAccountUpdater; + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool excludeFromAccountUpdaterSpecified; } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2903,7 +2924,7 @@ public partial class customerPaymentProfileExType : customerPaymentProfileType { [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerProfileInfoExType))] [System.Xml.Serialization.XmlIncludeAttribute(typeof(subscriptionCustomerProfileType))] [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerProfileType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2924,7 +2945,7 @@ public partial class customerProfileBaseType { [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerProfileMaskedType))] [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerProfileInfoExType))] [System.Xml.Serialization.XmlIncludeAttribute(typeof(subscriptionCustomerProfileType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2936,7 +2957,7 @@ public partial class customerProfileExType : customerProfileBaseType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2960,7 +2981,7 @@ public partial class customerProfileMaskedType : customerProfileExType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum customerProfileTypeEnum { @@ -2973,7 +2994,7 @@ public enum customerProfileTypeEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -2989,7 +3010,7 @@ public partial class customerProfileInfoExType : customerProfileExType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3004,7 +3025,7 @@ public partial class subscriptionCustomerProfileType : customerProfileExType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3028,7 +3049,7 @@ public partial class customerProfileType : customerProfileBaseType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3074,7 +3095,7 @@ public partial class ARBSubscriptionMaskedType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3108,7 +3129,7 @@ public partial class paymentScheduleType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3123,7 +3144,7 @@ public partial class paymentScheduleTypeInterval { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum ARBSubscriptionUnitEnum { @@ -3136,7 +3157,7 @@ public enum ARBSubscriptionUnitEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3172,7 +3193,7 @@ public partial class arbTransaction { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3187,7 +3208,7 @@ public partial class securePaymentContainerErrorType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3221,7 +3242,7 @@ public partial class customerType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3235,7 +3256,7 @@ public partial class paymentSimpleType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3262,7 +3283,7 @@ public partial class merchantContactType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3280,7 +3301,7 @@ public partial class ContactDetailType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3293,7 +3314,7 @@ public partial class permissionType { /// [System.Xml.Serialization.XmlIncludeAttribute(typeof(emailSettingsType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3306,7 +3327,7 @@ public partial class ArrayOfSetting { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3319,7 +3340,7 @@ public partial class emailSettingsType : ArrayOfSetting { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3335,7 +3356,7 @@ public partial class fraudInformationType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3399,7 +3420,7 @@ public partial class transactionSummaryType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3446,7 +3467,7 @@ public partial class ARBSubscriptionType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3470,7 +3491,7 @@ public partial class webCheckOutDataTypeToken { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3491,7 +3512,7 @@ public partial class webCheckOutDataType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum webCheckOutTypeEnum { @@ -3504,7 +3525,7 @@ public enum webCheckOutTypeEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3543,7 +3564,7 @@ public partial class paymentDetails { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3567,7 +3588,7 @@ public partial class fingerPrintType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3582,7 +3603,7 @@ public partial class impersonationAuthenticationType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3612,7 +3633,7 @@ public partial class merchantAuthenticationType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IncludeInSchema=false)] public enum ItemChoiceType { @@ -3640,7 +3661,7 @@ public enum ItemChoiceType { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3658,7 +3679,7 @@ public partial class ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3680,7 +3701,7 @@ public partial class decryptPaymentDataResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3699,7 +3720,7 @@ public partial class ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3712,7 +3733,7 @@ public partial class securePaymentContainerRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3725,7 +3746,7 @@ public partial class securePaymentContainerResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3738,7 +3759,7 @@ public partial class isAliveRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3748,7 +3769,7 @@ public partial class isAliveResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3758,7 +3779,7 @@ public partial class authenticateTestRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3768,7 +3789,7 @@ public partial class authenticateTestResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3781,7 +3802,7 @@ public partial class ARBCreateSubscriptionRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3797,7 +3818,7 @@ public partial class ARBCreateSubscriptionResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3813,7 +3834,7 @@ public partial class ARBUpdateSubscriptionRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3826,7 +3847,7 @@ public partial class ARBUpdateSubscriptionResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3839,7 +3860,7 @@ public partial class ARBCancelSubscriptionRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3849,7 +3870,7 @@ public partial class ARBCancelSubscriptionResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3862,7 +3883,7 @@ public partial class ARBGetSubscriptionStatusRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3879,7 +3900,7 @@ public partial class ARBGetSubscriptionStatusResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3899,7 +3920,7 @@ public partial class createCustomerProfileRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum validationModeEnum { @@ -3918,7 +3939,7 @@ public enum validationModeEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3943,7 +3964,7 @@ public partial class createCustomerProfileResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3966,7 +3987,7 @@ public partial class createCustomerPaymentProfileRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -3985,7 +4006,7 @@ public partial class createCustomerPaymentProfileResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4008,7 +4029,7 @@ public partial class createCustomerShippingAddressRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4024,7 +4045,7 @@ public partial class createCustomerShippingAddressResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4064,7 +4085,7 @@ public partial class createCustomerProfileFromTransactionRequest : ANetApiReques } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4097,7 +4118,7 @@ public partial class getCustomerProfileRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4114,7 +4135,7 @@ public partial class getCustomerProfileResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4144,7 +4165,7 @@ public partial class getCustomerPaymentProfileRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4157,7 +4178,7 @@ public partial class getCustomerPaymentProfileResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4173,7 +4194,7 @@ public partial class getCustomerShippingAddressRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4197,7 +4218,7 @@ public partial class getCustomerShippingAddressResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4206,11 +4227,11 @@ public partial class getCustomerShippingAddressResponse : ANetApiResponse { public partial class updateCustomerProfileRequest : ANetApiRequest { /// - public customerProfileExType profile; + public customerProfileInfoExType profile; } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4220,7 +4241,7 @@ public partial class updateCustomerProfileResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4243,7 +4264,7 @@ public partial class updateCustomerPaymentProfileRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4256,7 +4277,7 @@ public partial class updateCustomerPaymentProfileResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4279,7 +4300,7 @@ public partial class updateCustomerShippingAddressRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4289,7 +4310,7 @@ public partial class updateCustomerShippingAddressResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4302,7 +4323,7 @@ public partial class deleteCustomerProfileRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4312,7 +4333,7 @@ public partial class deleteCustomerProfileResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4328,7 +4349,7 @@ public partial class deleteCustomerPaymentProfileRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4338,7 +4359,7 @@ public partial class deleteCustomerPaymentProfileResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4354,7 +4375,7 @@ public partial class deleteCustomerShippingAddressRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4364,7 +4385,7 @@ public partial class deleteCustomerShippingAddressResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4380,7 +4401,7 @@ public partial class createCustomerProfileTransactionRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4396,7 +4417,7 @@ public partial class createCustomerProfileTransactionResponse : ANetApiResponse } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4421,7 +4442,7 @@ public partial class validateCustomerPaymentProfileRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4434,7 +4455,7 @@ public partial class validateCustomerPaymentProfileResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4444,7 +4465,7 @@ public partial class getCustomerProfileIdsRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4458,7 +4479,7 @@ public partial class getCustomerProfileIdsResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4474,7 +4495,7 @@ public partial class updateSplitTenderGroupRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum splitTenderStatusEnum { @@ -4490,7 +4511,7 @@ public enum splitTenderStatusEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4500,7 +4521,7 @@ public partial class updateSplitTenderGroupResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4513,7 +4534,7 @@ public partial class getTransactionDetailsRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4532,7 +4553,7 @@ public partial class getTransactionDetailsResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4545,7 +4566,7 @@ public partial class createTransactionRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4561,7 +4582,7 @@ public partial class createTransactionResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4574,7 +4595,7 @@ public partial class updateHeldTransactionRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4587,7 +4608,7 @@ public partial class updateHeldTransactionResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4600,7 +4621,7 @@ public partial class getBatchStatisticsRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4613,7 +4634,7 @@ public partial class getBatchStatisticsResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4644,7 +4665,7 @@ public partial class getSettledBatchListRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4658,7 +4679,7 @@ public partial class getSettledBatchListResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4677,7 +4698,7 @@ public partial class getTransactionListRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4698,7 +4719,7 @@ public partial class getTransactionListResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4715,7 +4736,7 @@ public partial class getHostedProfilePageRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4728,7 +4749,7 @@ public partial class getHostedProfilePageResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4751,7 +4772,7 @@ public partial class getUnsettledTransactionListRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum TransactionGroupStatusEnum { @@ -4764,7 +4785,7 @@ public enum TransactionGroupStatusEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4781,7 +4802,7 @@ public partial class getHostedPaymentPageRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4794,7 +4815,7 @@ public partial class getHostedPaymentPageResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4815,7 +4836,7 @@ public partial class getUnsettledTransactionListResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4828,7 +4849,7 @@ public partial class mobileDeviceRegistrationRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4838,7 +4859,7 @@ public partial class mobileDeviceRegistrationResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4848,7 +4869,7 @@ public partial class mobileDeviceLoginRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4868,7 +4889,7 @@ public partial class mobileDeviceLoginResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4878,7 +4899,7 @@ public partial class logoutRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4888,7 +4909,7 @@ public partial class logoutResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4907,7 +4928,7 @@ public partial class sendCustomerTransactionReceiptRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4917,7 +4938,7 @@ public partial class sendCustomerTransactionReceiptResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4936,7 +4957,7 @@ public partial class ARBGetSubscriptionListRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum ARBGetSubscriptionListSearchTypeEnum { @@ -4955,7 +4976,7 @@ public enum ARBGetSubscriptionListSearchTypeEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -4976,7 +4997,7 @@ public partial class ARBGetSubscriptionListResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -5016,7 +5037,7 @@ public partial class EnumCollection { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum accountTypeEnum { @@ -5044,7 +5065,7 @@ public enum accountTypeEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum cardTypeEnum { @@ -5069,7 +5090,7 @@ public enum cardTypeEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum FDSFilterActionEnum { @@ -5091,7 +5112,7 @@ public enum FDSFilterActionEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum permissionsEnum { @@ -5113,7 +5134,7 @@ public enum permissionsEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum settingNameEnum { @@ -5216,7 +5237,7 @@ public enum settingNameEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum settlementStateEnum { @@ -5232,7 +5253,7 @@ public enum settlementStateEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum transactionStatusEnum { @@ -5311,7 +5332,7 @@ public enum transactionStatusEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum transactionTypeEnum { @@ -5345,7 +5366,7 @@ public enum transactionTypeEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -5367,7 +5388,7 @@ public partial class getCustomerPaymentProfileListRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum CustomerPaymentProfileSearchTypeEnum { @@ -5377,7 +5398,7 @@ public enum CustomerPaymentProfileSearchTypeEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -5394,7 +5415,7 @@ public partial class getCustomerPaymentProfileListResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -5414,7 +5435,7 @@ public partial class ARBGetSubscriptionRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -5427,7 +5448,7 @@ public partial class ARBGetSubscriptionResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -5449,7 +5470,7 @@ public partial class getTransactionListForCustomerRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -5462,7 +5483,7 @@ public partial class getAUJobSummaryRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -5476,7 +5497,7 @@ public partial class getAUJobSummaryResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -5499,7 +5520,7 @@ public partial class getAUJobDetailsRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum AUJobTypeEnum { @@ -5515,7 +5536,7 @@ public enum AUJobTypeEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -5537,7 +5558,7 @@ public partial class getAUJobDetailsResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -5547,7 +5568,7 @@ public partial class getMerchantDetailsRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -5603,7 +5624,7 @@ public partial class getMerchantDetailsResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")] public enum paymentMethodsTypeEnum { @@ -5649,7 +5670,7 @@ public enum paymentMethodsTypeEnum { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -5662,7 +5683,7 @@ public partial class updateMerchantDetailsRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -5672,7 +5693,7 @@ public partial class updateMerchantDetailsResponse : ANetApiResponse { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] @@ -5691,7 +5712,7 @@ public partial class getCustomerPaymentProfileNonceRequest : ANetApiRequest { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] diff --git a/AuthorizeNET.sln b/AuthorizeNET.sln index f2173b30..132041ae 100644 --- a/AuthorizeNET.sln +++ b/AuthorizeNET.sln @@ -1,17 +1,12 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 +# Visual Studio Version 17 +VisualStudioVersion = 17.10.35027.167 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthorizeNET", "Authorize.NET\AuthorizeNET.csproj", "{5D52EAEC-42FB-4313-83B8-69E2F55EBF14}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthorizeNETtest", "AuthorizeNETtest\AuthorizeNETtest.csproj", "{CDA0D4D8-E4AA-4BEA-8839-04D69607D914}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{7EBF48A1-8AC1-4E84-BDCC-E0984183D098}" - ProjectSection(SolutionItems) = preProject - AuthorizeNET.vsmdi = AuthorizeNET.vsmdi - EndProjectSection -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU diff --git a/AuthorizeNETtest/Api/Controllers/SampleTest/CreateCustomerProfileFromTransactionSampleTest.cs b/AuthorizeNETtest/Api/Controllers/SampleTest/CreateCustomerProfileFromTransactionSampleTest.cs index e528e61f..ce6b022c 100644 --- a/AuthorizeNETtest/Api/Controllers/SampleTest/CreateCustomerProfileFromTransactionSampleTest.cs +++ b/AuthorizeNETtest/Api/Controllers/SampleTest/CreateCustomerProfileFromTransactionSampleTest.cs @@ -84,7 +84,7 @@ private long GetTransactionId() //set up data based on transaction var transactionAmount = SetValidTransactionAmount(Counter); - var creditCard = new creditCardType { cardNumber = "4111111111111111", expirationDate = "0622" }; + var creditCard = new creditCardType { cardNumber = "4111111111111111", expirationDate = "0645" }; var aCustomer = new customerDataType { email = string.Format( "{0}@b.bla", Counter)}; //standard api call to retrieve response @@ -146,7 +146,7 @@ public void CreateTransactionFromProfile() { billTo = profileShipTo, customerType = customerTypeEnum.individual, - payment = new paymentType { Item = new creditCardType { cardNumber = "4111111111111111", expirationDate = "0622" } }, + payment = new paymentType { Item = new creditCardType { cardNumber = "4111111111111111", expirationDate = "0645" } }, }; var createProfileReq = new createCustomerProfileRequest diff --git a/AuthorizeNETtest/Api/Controllers/SampleTest/CreateTransactionSampleTest.cs b/AuthorizeNETtest/Api/Controllers/SampleTest/CreateTransactionSampleTest.cs index 675495c9..875df7e5 100644 --- a/AuthorizeNETtest/Api/Controllers/SampleTest/CreateTransactionSampleTest.cs +++ b/AuthorizeNETtest/Api/Controllers/SampleTest/CreateTransactionSampleTest.cs @@ -164,7 +164,7 @@ private Boolean createProfile(out String customerProfileId, out String paymentPr var rnd = new AnetRandom(DateTime.Now.Millisecond); string custIndx = rnd.Next(99999).ToString(); - var creditCard = new creditCardType { cardNumber = "4111111111111111", expirationDate = "0622" }; + var creditCard = new creditCardType { cardNumber = "4111111111111111", expirationDate = "0645" }; var paymentType = new paymentType {Item = creditCard}; var paymentProfile = new customerPaymentProfileType{ payment = paymentType }; @@ -210,7 +210,7 @@ public void SampleCodeCreateTransactionWithCreditCard() //set up data for transaction var transactionAmount = SetValidTransactionAmount(Counter); - var creditCard = new creditCardType { cardNumber = "4111111111111111", expirationDate = "0622" }; + var creditCard = new creditCardType { cardNumber = "4111111111111111", expirationDate = "0645" }; //standard api call to retrieve response var paymentType = new paymentType {Item = creditCard}; @@ -415,7 +415,7 @@ public void SampleCodeCreateUnlinkedCredit() decimal txnAmount = SetValidTransactionAmount(Counter) / 100; //Set payment info for credit - var creditCard = new creditCardType { cardNumber = "4111111111111111", expirationDate = "0622" }; + var creditCard = new creditCardType { cardNumber = "4111111111111111", expirationDate = "0645" }; var paymentType = new paymentType { Item = creditCard }; //Create credit request @@ -445,7 +445,7 @@ public void SampleCodeCreateTransactionPriorAuthCapture() //set up data based on transaction var transactionAmount = SetValidTransactionAmount(Counter); - var creditCard = new creditCardType { cardNumber = "4111111111111111", expirationDate = "0622" }; + var creditCard = new creditCardType { cardNumber = "4111111111111111", expirationDate = "0645" }; //Build auth only transaction request. var paymentType = new paymentType { Item = creditCard }; diff --git a/AuthorizeNETtest/Api/Controllers/SampleTest/CustomerProfileSampleTest.cs b/AuthorizeNETtest/Api/Controllers/SampleTest/CustomerProfileSampleTest.cs index 9f4fca5c..8713bc2c 100644 --- a/AuthorizeNETtest/Api/Controllers/SampleTest/CustomerProfileSampleTest.cs +++ b/AuthorizeNETtest/Api/Controllers/SampleTest/CustomerProfileSampleTest.cs @@ -40,7 +40,7 @@ private customerPaymentProfileType getCustomerPaymentProfileObject() var CreditCardOne = new creditCardType { cardNumber = "4111111111111111", - expirationDate = "2032-10" + expirationDate = "2045-10" }; var PaymentOne = new paymentType @@ -82,7 +82,7 @@ public void GetCustomerPaymentProfileListSampleTest() { refId = RefId, searchType = CustomerPaymentProfileSearchTypeEnum.cardsExpiringInMonth, - month = "2032-10" + month = "2045-10" }; bool found = false; diff --git a/AuthorizeNETtest/Api/Controllers/SampleTest/ErrorMessagesSampleTest.cs b/AuthorizeNETtest/Api/Controllers/SampleTest/ErrorMessagesSampleTest.cs index 71288486..1fb93e54 100644 --- a/AuthorizeNETtest/Api/Controllers/SampleTest/ErrorMessagesSampleTest.cs +++ b/AuthorizeNETtest/Api/Controllers/SampleTest/ErrorMessagesSampleTest.cs @@ -81,7 +81,7 @@ public void TestErrorMessages_ARB_ExpiredCard() { cardCode = "655", cardNumber = "4111111111111111", - expirationDate = "122013", //deliberatly set payment to use expired CC + expirationDate = "122013", // deliberately set payment to use expired CC } }, diff --git a/AuthorizeNETtest/Api/Controllers/SampleTest/eCheckTransactionSampleTest.cs b/AuthorizeNETtest/Api/Controllers/SampleTest/eCheckTransactionSampleTest.cs index 07f53003..8b2c5d02 100644 --- a/AuthorizeNETtest/Api/Controllers/SampleTest/eCheckTransactionSampleTest.cs +++ b/AuthorizeNETtest/Api/Controllers/SampleTest/eCheckTransactionSampleTest.cs @@ -39,6 +39,7 @@ public class CreateECheckTransactionSampleTest : ApiCoreTestBase [Test] + [Ignore("Bank account details are invalid")] public void CreateTransactionWithECheck_AuthCapture() { //Common code to set for all requests @@ -67,6 +68,7 @@ public void CreateTransactionWithECheck_AuthCapture() } [Test] + [Ignore("Bank account details are invalid")] public void CreateTransactionWithECheckAuth_Only() { //Common code to set for all requests @@ -98,6 +100,7 @@ public void CreateTransactionWithECheckAuth_Only() [Test] + [Ignore("Bank account details are invalid")] public void CreateCustomerProfileFromECheckTransaction() { var rnd = new AnetRandom(DateTime.Now.Millisecond); @@ -236,6 +239,7 @@ public void CreateCreditRequestForSettledECheckTransaction() } [Test] + [Ignore("Bank account details are invalid")] public void CreateTransactionWithECheckCapturePriorAuth() { //Common code to set for all requests diff --git a/AuthorizeNETtest/Api/Controllers/Test/APIInvalidCredentials.cs b/AuthorizeNETtest/Api/Controllers/Test/APIInvalidCredentials.cs index 39b41cef..b6558883 100644 --- a/AuthorizeNETtest/Api/Controllers/Test/APIInvalidCredentials.cs +++ b/AuthorizeNETtest/Api/Controllers/Test/APIInvalidCredentials.cs @@ -60,6 +60,7 @@ public void InvalidCredentialsTest() } [Test] + [Ignore("Test is invalid now due to access token being wrong")] public void IllFormedCredentialsTest() { LogHelper.info(Logger, "CreateProfileWithCreateTransactionRequestTest"); diff --git a/AuthorizeNETtest/Api/Controllers/Test/ApiCoreTestBase.cs b/AuthorizeNETtest/Api/Controllers/Test/ApiCoreTestBase.cs index 4e720f09..0fbbfe34 100644 --- a/AuthorizeNETtest/Api/Controllers/Test/ApiCoreTestBase.cs +++ b/AuthorizeNETtest/Api/Controllers/Test/ApiCoreTestBase.cs @@ -161,7 +161,7 @@ public void SetUp() CreditCardOne = new creditCardType { cardNumber = "4111111111111111", - expirationDate = "2038-12", + expirationDate = "2045-12", }; // creditCardOne.setCardCode(""); diff --git a/AuthorizeNETtest/Api/Controllers/Test/CreateTransactionTest.cs b/AuthorizeNETtest/Api/Controllers/Test/CreateTransactionTest.cs index 33c80507..b0c8f7c8 100644 --- a/AuthorizeNETtest/Api/Controllers/Test/CreateTransactionTest.cs +++ b/AuthorizeNETtest/Api/Controllers/Test/CreateTransactionTest.cs @@ -318,6 +318,7 @@ public void CreateTransactionInvalidRequestSchemaValidationTest() } [Test] + [Ignore("Blob data is invalid")] public void DecryptPaymentDataRequestTest() { LogHelper.info(Logger, "decryptPaymentDataRequestTest"); diff --git a/AuthorizeNETtest/App.config b/AuthorizeNETtest/App.config index 27eeb418..f4f715ce 100644 --- a/AuthorizeNETtest/App.config +++ b/AuthorizeNETtest/App.config @@ -1,9 +1,9 @@ - - - + + + diff --git a/AuthorizeNETtest/AuthorizeNETtest.csproj b/AuthorizeNETtest/AuthorizeNETtest.csproj index c2ee635b..480d276a 100644 --- a/AuthorizeNETtest/AuthorizeNETtest.csproj +++ b/AuthorizeNETtest/AuthorizeNETtest.csproj @@ -1,5 +1,6 @@  + Debug AnyCPU @@ -10,7 +11,7 @@ Properties AuthorizeNETtest AuthorizeNETtest - v4.5 + v4.6.1 512 {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} @@ -18,6 +19,8 @@ 3.5 + + AnyCPU @@ -152,6 +155,12 @@ + + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + +

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy