Showing preview only (1,123K chars total). Download the full file or copy to clipboard to get everything.
Repository: AuthorizeNet/sdk-dotnet
Branch: master
Commit: f9f674a22ff1
Files: 170
Total size: 1.0 MB
Directory structure:
gitextract_8bz_t022/
├── .github/
│ └── workflows/
│ └── dotnet-workflow.yml
├── .gitignore
├── .gitmodules
├── .travis.yml
├── Authorize.NET/
│ ├── Api/
│ │ ├── Contracts/
│ │ │ └── V1/
│ │ │ ├── AnetApiSchema.generated.cs
│ │ │ ├── RequestFactoryWithSpecified.cs
│ │ │ └── RequestFactoryWithSpecified.generated.org
│ │ ├── ControllerTemplate.cst
│ │ └── Controllers/
│ │ ├── ARBCancelSubscriptionController.cs
│ │ ├── ARBCreateSubscriptionController.cs
│ │ ├── ARBGetSubscriptionController.cs
│ │ ├── ARBGetSubscriptionListController.cs
│ │ ├── ARBGetSubscriptionStatusController.cs
│ │ ├── ARBUpdateSubscriptionController.cs
│ │ ├── Bases/
│ │ │ ├── ApiOperationBase.cs
│ │ │ ├── ErrorResponse.cs
│ │ │ └── IApiOperation.cs
│ │ ├── authenticateTestController.cs
│ │ ├── createCustomerPaymentProfileController.cs
│ │ ├── createCustomerProfileController.cs
│ │ ├── createCustomerProfileFromTransactionController.cs
│ │ ├── createCustomerProfileTransactionController.cs
│ │ ├── createCustomerShippingAddressController.cs
│ │ ├── createFingerPrintController.cs
│ │ ├── createProfileController.cs
│ │ ├── createTransactionController.cs
│ │ ├── decryptPaymentDataController.cs
│ │ ├── deleteCustomerPaymentProfileController.cs
│ │ ├── deleteCustomerProfileController.cs
│ │ ├── deleteCustomerShippingAddressController.cs
│ │ ├── getAUJobDetailsController.cs
│ │ ├── getAUJobSummaryController.cs
│ │ ├── getBatchStatisticsController.cs
│ │ ├── getCustomerPaymentProfileController.cs
│ │ ├── getCustomerPaymentProfileListController.cs
│ │ ├── getCustomerPaymentProfileNonceController.cs
│ │ ├── getCustomerProfileController.cs
│ │ ├── getCustomerProfileIdsController.cs
│ │ ├── getCustomerShippingAddressController.cs
│ │ ├── getHostedPaymentPageController.cs
│ │ ├── getHostedProfilePageController.cs
│ │ ├── getMerchantDetailsController.cs
│ │ ├── getSettledBatchListController.cs
│ │ ├── getTransactionDetailsController.cs
│ │ ├── getTransactionListController.cs
│ │ ├── getTransactionListForCustomerController.cs
│ │ ├── getUnsettledTransactionListController.cs
│ │ ├── isAliveController.cs
│ │ ├── logoutController.cs
│ │ ├── mobileDeviceLoginController.cs
│ │ ├── mobileDeviceRegistrationController.cs
│ │ ├── securePaymentContainerController.cs
│ │ ├── sendCustomerTransactionReceiptController.cs
│ │ ├── transactionController.cs
│ │ ├── transactionResponseEmvController.cs
│ │ ├── updateCustomerPaymentProfileController.cs
│ │ ├── updateCustomerProfileController.cs
│ │ ├── updateCustomerShippingAddressController.cs
│ │ ├── updateHeldTransactionController.cs
│ │ ├── updateMerchantDetailsController.cs
│ │ ├── updateSplitTenderGroupController.cs
│ │ └── validateCustomerPaymentProfileController.cs
│ ├── AuthorizeNET.csproj
│ ├── Environment.cs
│ ├── MarketType.cs
│ ├── Properties/
│ │ └── AssemblyInfo.cs
│ ├── TestFriends.cs
│ ├── Util/
│ │ ├── Constants.cs
│ │ ├── EnumHelper.cs
│ │ ├── HtmlHelper.cs
│ │ ├── HttpUtility.cs
│ │ ├── LogHelper.cs
│ │ ├── SensitiveDataConfigType.cs
│ │ ├── SensitiveDataConsoleLogger.cs
│ │ ├── SensitiveDataTextLogger.cs
│ │ ├── StringUtils.cs
│ │ └── XmlUtility.cs
│ └── Utility/
│ ├── AnetApiSchema.generated.cs
│ ├── AnetRandom.cs
│ ├── ApiFields.cs
│ └── CryptoRandom.cs
├── AuthorizeNET.sln
├── AuthorizeNET.vsmdi
├── AuthorizeNETtest/
│ ├── Api/
│ │ ├── ControllerTemplateTest.cst
│ │ └── Controllers/
│ │ ├── MockTest/
│ │ │ ├── ARBCancelSubscriptionControllerTest.cs
│ │ │ ├── ARBCreateSubscriptionControllerTest.cs
│ │ │ ├── ARBGetSubscriptionControllerTest.cs
│ │ │ ├── ARBGetSubscriptionListControllerTest.cs
│ │ │ ├── ARBGetSubscriptionStatusControllerTest.cs
│ │ │ ├── ARBUpdateSubscriptionControllerTest.cs
│ │ │ ├── authenticateTestControllerTest.cs
│ │ │ ├── createCustomerPaymentProfileControllerTest.cs
│ │ │ ├── createCustomerProfileControllerTest.cs
│ │ │ ├── createCustomerProfileFromTransactionControllerTest.cs
│ │ │ ├── createCustomerProfileTransactionControllerTest.cs
│ │ │ ├── createCustomerShippingAddressControllerTest.cs
│ │ │ ├── createFingerPrintControllerTest.cs
│ │ │ ├── createProfileControllerTest.cs
│ │ │ ├── createTransactionControllerTest.cs
│ │ │ ├── decryptPaymentDataControllerTest.cs
│ │ │ ├── deleteCustomerPaymentProfileControllerTest.cs
│ │ │ ├── deleteCustomerProfileControllerTest.cs
│ │ │ ├── deleteCustomerShippingAddressControllerTest.cs
│ │ │ ├── getAUJobDetailsControllerTest.cs
│ │ │ ├── getAUJobSummaryControllerTest.cs
│ │ │ ├── getBatchStatisticsControllerTest.cs
│ │ │ ├── getCustomerPaymentProfileControllerTest.cs
│ │ │ ├── getCustomerPaymentProfileListControllerTest.cs
│ │ │ ├── getCustomerProfileControllerTest.cs
│ │ │ ├── getCustomerProfileIdsControllerTest.cs
│ │ │ ├── getCustomerShippingAddressControllerTest.cs
│ │ │ ├── getHostedPaymentPageControllerTest.cs
│ │ │ ├── getHostedProfilePageControllerTest.cs
│ │ │ ├── getMerchantDetailsControllerTest.cs
│ │ │ ├── getSettledBatchListControllerTest.cs
│ │ │ ├── getTransactionDetailsControllerTest.cs
│ │ │ ├── getTransactionListControllerTest.cs
│ │ │ ├── getTransactionListForCustomerControllerTest.cs
│ │ │ ├── getUnsettledTransactionListControllerTest.cs
│ │ │ ├── isAliveControllerTest.cs
│ │ │ ├── logoutControllerTest.cs
│ │ │ ├── mobileDeviceLoginControllerTest.cs
│ │ │ ├── mobileDeviceRegistrationControllerTest.cs
│ │ │ ├── securePaymentContainerControllerTest.cs
│ │ │ ├── sendCustomerTransactionReceiptControllerTest.cs
│ │ │ ├── transactionControllerTest.cs
│ │ │ ├── transactionResponseEmvControllerTest.cs
│ │ │ ├── updateCustomerPaymentProfileControllerTest.cs
│ │ │ ├── updateCustomerProfileControllerTest.cs
│ │ │ ├── updateCustomerShippingAddressControllerTest.cs
│ │ │ ├── updateHeldTransactionControllerTest.cs
│ │ │ ├── updateMerchantDetailsControllerTest.cs
│ │ │ ├── updateSplitTenderGroupControllerTest.cs
│ │ │ └── validateCustomerPaymentProfileControllerTest.cs
│ │ ├── SampleTest/
│ │ │ ├── ArbSubscriptionSampleTest.cs
│ │ │ ├── CreateCustomerProfileFromTransactionSampleTest.cs
│ │ │ ├── CreateTransactionSampleTest.cs
│ │ │ ├── CustomerProfileSampleTest.cs
│ │ │ ├── ErrorMessagesSampleTest.cs
│ │ │ └── eCheckTransactionSampleTest.cs
│ │ └── Test/
│ │ ├── APIInvalidCredentials.cs
│ │ ├── AllGeneratedEnumTest.cs
│ │ ├── ApiCoreTestBase.cs
│ │ ├── ArbSubscriptionTest.cs
│ │ └── CreateTransactionTest.cs
│ ├── App.config
│ ├── AuthorizeNETtest.csproj
│ ├── BaseTest.cs
│ ├── NMock3/
│ │ └── NMockTest.cs
│ ├── Properties/
│ │ └── AssemblyInfo.cs
│ ├── UnitTestData.cs
│ ├── WebRequestLocal.cs
│ └── packages.config
├── AuthorizeNet.nuspec
├── CONTRIBUTING.md
├── LICENSE.txt
├── LocalTestRun.testrunconfig
├── MIGRATING.md
├── NUnit-2.6.3/
│ └── license.txt
├── README.md
└── scripts/
├── EnumTemplate.cst
├── generateControllersFromTemplate.cmd
├── generateObjectsFromXsd.cmd
├── generateRequestFactorySpecified.cmd
├── generateTestControllersFromTemplate.cmd
├── generateTestForEnums.cmd
├── getXsdWsdl.cmd
├── masterUpdate.cmd
├── prepareBinariesForVeracodeScan.cmd
└── validateCygwinBinaries.cmd
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/workflows/dotnet-workflow.yml
================================================
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 '<add key="api.login.id" value="API_LOGIN" />', '<add key="api.login.id" value="5KP3u95bQpv" />' } | ForEach-Object { $_ -replace '<add key="transaction.key" value="API_KEY" />', '<add key="transaction.key" value="346HZ32z3fP4hTG2" />' } | ForEach-Object { $_ -replace '<add key="md5.hash.key" value="" />', '<add key="md5.hash.key" value="MD5_TEST" />' } | 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: 'master'
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 '.*<package\s*id="AuthorizeNet".*\/>', "<package id=`"AuthorizeNet`" version=`"$clientSdkVersion`" targetFramework=`"net461`" />" } | 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 "(<HintPath>)(.)+(AuthorizeNet.dll</HintPath>)", "<HintPath>packages\\$clientSdkFolderName\\lib\\AuthorizeNet.dll</HintPath>" } | Set-Content ./SampleCode.csproj
(Get-Content ./SampleCodeTest/SampleCodeTest.csproj) | ForEach-Object { $_ -replace "(<HintPath>)(.)+(AuthorizeNet.dll</HintPath>)", "<HintPath>..\\packages\\$clientSdkFolderName\\lib\\AuthorizeNet.dll</HintPath>" } | Set-Content ./SampleCodeTest/SampleCodeTest.csproj
(Get-Content ./SampleCode.csproj) | ForEach-Object { $_ -replace "(<TargetFrameworkVersion>)(.)+(</TargetFrameworkVersion>)", "<TargetFrameworkVersion>v${{matrix.net-framework-version}}</TargetFrameworkVersion>" } | Set-Content ./SampleCode.csproj
(Get-Content ./SampleCodeTest/SampleCodeTest.csproj) | ForEach-Object { $_ -replace "(<TargetFrameworkVersion>)(.)+(</TargetFrameworkVersion>)", "<TargetFrameworkVersion>v${{matrix.net-framework-version}}</TargetFrameworkVersion>" } | 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
================================================
FILE: .gitignore
================================================
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.sln.docstates
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
build/
bld/
[Bb]in/
[Oo]bj/
# Roslyn cache directories
*.ide/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
#NUNIT
*.VisualState.xml
TestResult.xml
# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c
*_i.c
*_p.c
*_i.h
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc
# Chutzpah Test files
_Chutzpah*
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf
*.cachefile
# Visual Studio profiler
*.psess
*.vsp
*.vspx
# TFS 2012 Local Workspace
$tf/
# Guidance Automation Toolkit
*.gpState
# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user
# JustCode is a .NET coding addin-in
.JustCode
# TeamCity is a build add-in
_TeamCity*
# DotCover is a Code Coverage Tool
*.dotCover
# NCrunch
_NCrunch_*
.*crunch*.local.xml
# MightyMoose
*.mm.*
AutoTest.Net/
# Web workbench (sass)
.sass-cache/
# Installshield output folder
[Ee]xpress/
# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
# Click-Once directory
publish/
# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# TODO: Comment the next line if you want to checkin your web deploy settings
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj
# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
# If using the old MSBuild-Integrated Package Restore, uncomment this:
#!**/packages/repositories.config
# Windows Azure Build Output
csx/
*.build.csdef
# Windows Store app package directory
AppPackages/
# Others
sql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.pfx
*.publishsettings
node_modules/
# RIA/Silverlight projects
Generated_Code/
# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
# SQL Server files
*.mdf
*.ldf
# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings
# Microsoft Fakes
FakesAssemblies/
/NUnit.ConsoleRunner.3.13.0
/.vs
/nuget.exe
================================================
FILE: .gitmodules
================================================
[submodule "sample-code-csharp"]
path = sample-code-csharp
url = https://github.com/Authorizenet/sample-code-csharp.git
================================================
FILE: .travis.yml
================================================
language:
csharp
dist: trusty
install:
- sudo apt-get install nunit-console
before_script:
- git submodule update --remote --recursive
script:
- xbuild ./Authorize.NET/AuthorizeNET.csproj
- xbuild ./AuthorizeNETtest/AuthorizeNETtest.csproj
# make mono happy by copying the config file with project name
- cp AuthorizeNETtest/App.config AuthorizeNETtest/AuthorizeNETtest.config
- nunit-console ./AuthorizeNETtest/AuthorizeNETtest.csproj -run=AuthorizeNet.Api.Controllers.MockTest -exclude Integration,NotWorkingOnMono
- cp ./Authorize.NET/bin/Debug/AuthorizeNet.dll ./sample-code-csharp/
- xbuild ./sample-code-csharp/SampleCode.csproj
- xbuild ./sample-code-csharp/SampleCodeTest/SampleCodeTest.csproj
- nunit-console ./sample-code-csharp/SampleCodeTest/SampleCodeTest.csproj -run=SampleCodeTest
================================================
FILE: Authorize.NET/Api/Contracts/V1/AnetApiSchema.generated.cs
================================================
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
//
// This source code was auto-generated by xsd, Version=4.6.1055.0.
//
namespace AuthorizeNet.Api.Contracts.V1 {
using System.Xml.Serialization;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class decryptPaymentDataRequest : ANetApiRequest {
/// <remarks/>
public opaqueDataType opaqueData;
/// <remarks/>
public string callId;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class opaqueDataType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string dataDescriptor;
/// <remarks/>
public string dataValue;
/// <remarks/>
public string dataKey;
/// <remarks/>
public System.DateTime expirationTimeStamp;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool expirationTimeStampSpecified;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class processorType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string name;
/// <remarks/>
public int id;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("cardType")]
public string[] cardTypes;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(auDeleteType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(auUpdateType))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class auDetailsType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public long customerProfileID;
/// <remarks/>
public long customerPaymentProfileID;
/// <remarks/>
public string firstName;
/// <remarks/>
public string lastName;
/// <remarks/>
public string updateTimeUTC;
/// <remarks/>
public string auReasonCode;
/// <remarks/>
public string reasonDescription;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class auDeleteType : auDetailsType {
/// <remarks/>
public creditCardMaskedType creditCard;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class creditCardMaskedType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string cardNumber;
/// <remarks/>
public string expirationDate;
/// <remarks/>
public string cardType;
/// <remarks/>
public cardArt cardArt;
/// <remarks/>
public string issuerNumber;
/// <remarks/>
public bool isPaymentToken;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool isPaymentTokenSpecified;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class cardArt : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string cardBrand;
/// <remarks/>
public string cardImageHeight;
/// <remarks/>
public string cardImageUrl;
/// <remarks/>
public string cardImageWidth;
/// <remarks/>
public string cardType;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class auUpdateType : auDetailsType {
/// <remarks/>
public creditCardMaskedType newCreditCard;
/// <remarks/>
public creditCardMaskedType oldCreditCard;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class auResponseType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string auReasonCode;
/// <remarks/>
public long profileCount;
/// <remarks/>
public string reasonDescription;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerPaymentProfileListItemType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public bool defaultPaymentProfile;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool defaultPaymentProfileSpecified;
/// <remarks/>
public int customerPaymentProfileId;
/// <remarks/>
public int customerProfileId;
/// <remarks/>
public customerAddressType billTo;
/// <remarks/>
public paymentMaskedType payment;
/// <remarks/>
public string originalNetworkTransId;
/// <remarks/>
public decimal originalAuthAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool originalAuthAmountSpecified;
/// <remarks/>
public bool excludeFromAccountUpdater;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool excludeFromAccountUpdaterSpecified;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(customerAddressExType))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerAddressType : nameAndAddressType {
/// <remarks/>
public string phoneNumber;
/// <remarks/>
public string faxNumber;
/// <remarks/>
public string email;
}
/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(customerAddressType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(customerAddressExType))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class nameAndAddressType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string firstName;
/// <remarks/>
public string lastName;
/// <remarks/>
public string company;
/// <remarks/>
public string address;
/// <remarks/>
public string city;
/// <remarks/>
public string state;
/// <remarks/>
public string zip;
/// <remarks/>
public string country;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerAddressExType : customerAddressType {
/// <remarks/>
public string customerAddressId;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class paymentMaskedType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("bankAccount", typeof(bankAccountMaskedType))]
[System.Xml.Serialization.XmlElementAttribute("creditCard", typeof(creditCardMaskedType))]
[System.Xml.Serialization.XmlElementAttribute("tokenInformation", typeof(tokenMaskedType))]
public object Item;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class bankAccountMaskedType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public bankAccountTypeEnum accountType;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool accountTypeSpecified;
/// <remarks/>
public string routingNumber;
/// <remarks/>
public string accountNumber;
/// <remarks/>
public string nameOnAccount;
/// <remarks/>
public echeckTypeEnum echeckType;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool echeckTypeSpecified;
/// <remarks/>
public string bankName;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
checking,
/// <remarks/>
savings,
/// <remarks/>
businessChecking,
}
/// <remarks/>
[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 {
/// <remarks/>
PPD,
/// <remarks/>
WEB,
/// <remarks/>
CCD,
/// <remarks/>
TEL,
/// <remarks/>
ARC,
/// <remarks/>
BOC,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class tokenMaskedType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string tokenSource;
/// <remarks/>
public string tokenNumber;
/// <remarks/>
public string expirationDate;
/// <remarks/>
public string tokenRequestorId;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class CustomerPaymentProfileSorting : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public CustomerPaymentProfileOrderFieldEnum orderBy;
/// <remarks/>
public bool orderDescending;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
id,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerProfileSummaryType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string customerProfileId;
/// <remarks/>
public string description;
/// <remarks/>
public string merchantCustomerId;
/// <remarks/>
public string email;
/// <remarks/>
public System.DateTime createdDate;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class SubscriptionDetail : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public int id;
/// <remarks/>
public string name;
/// <remarks/>
public ARBSubscriptionStatusEnum status;
/// <remarks/>
public System.DateTime createTimeStampUTC;
/// <remarks/>
public string firstName;
/// <remarks/>
public string lastName;
/// <remarks/>
public int totalOccurrences;
/// <remarks/>
public int pastOccurrences;
/// <remarks/>
public paymentMethodEnum paymentMethod;
/// <remarks/>
public string accountNumber;
/// <remarks/>
public string invoice;
/// <remarks/>
public decimal amount;
/// <remarks/>
public string currencyCode;
/// <remarks/>
public int customerProfileId;
/// <remarks/>
public int customerPaymentProfileId;
/// <remarks/>
public int customerShippingProfileId;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool customerShippingProfileIdSpecified;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
active,
/// <remarks/>
expired,
/// <remarks/>
suspended,
/// <remarks/>
canceled,
/// <remarks/>
terminated,
}
/// <remarks/>
[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 {
/// <remarks/>
creditCard,
/// <remarks/>
eCheck,
/// <remarks/>
payPal,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class ARBGetSubscriptionListSorting : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public ARBGetSubscriptionListOrderFieldEnum orderBy;
/// <remarks/>
public bool orderDescending;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
id,
/// <remarks/>
name,
/// <remarks/>
status,
/// <remarks/>
createTimeStampUTC,
/// <remarks/>
lastName,
/// <remarks/>
firstName,
/// <remarks/>
accountNumber,
/// <remarks/>
amount,
/// <remarks/>
pastOccurrences,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class Paging : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public int limit;
/// <remarks/>
public int offset;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class TransactionListSorting : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public TransactionListOrderFieldEnum orderBy;
/// <remarks/>
public bool orderDescending;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
id,
/// <remarks/>
submitTimeUTC,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class heldTransactionRequestType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public afdsTransactionEnum action;
/// <remarks/>
public string refTransId;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
approve,
/// <remarks/>
decline,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class createProfileResponse : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public messagesType messages;
/// <remarks/>
public string customerProfileId;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("numericString", IsNullable=false)]
public string[] customerPaymentProfileIdList;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("numericString", IsNullable=false)]
public string[] customerShippingAddressIdList;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class messagesType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public messageTypeEnum resultCode;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("message")]
public messagesTypeMessage[] message;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
Ok,
/// <remarks/>
Error,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class messagesTypeMessage : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string code;
/// <remarks/>
public string text;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class transactionResponse : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string responseCode;
/// <remarks/>
public string rawResponseCode;
/// <remarks/>
public string authCode;
/// <remarks/>
public string avsResultCode;
/// <remarks/>
public string cvvResultCode;
/// <remarks/>
public string cavvResultCode;
/// <remarks/>
public string transId;
/// <remarks/>
public string refTransID;
/// <remarks/>
public string transHash;
/// <remarks/>
public string testRequest;
/// <remarks/>
public string accountNumber;
/// <remarks/>
public string entryMode;
/// <remarks/>
public string accountType;
/// <remarks/>
public string splitTenderId;
/// <remarks/>
public transactionResponsePrePaidCard prePaidCard;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("message", IsNullable=false)]
public transactionResponseMessage[] messages;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("error", IsNullable=false)]
public transactionResponseError[] errors;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("splitTenderPayment", IsNullable=false)]
public transactionResponseSplitTenderPayment[] splitTenderPayments;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)]
public userField[] userFields;
/// <remarks/>
public nameAndAddressType shipTo;
/// <remarks/>
public transactionResponseSecureAcceptance secureAcceptance;
/// <remarks/>
public transactionResponseEmvResponse emvResponse;
/// <remarks/>
public string transHashSha2;
/// <remarks/>
public customerProfileIdType profile;
/// <remarks/>
public string networkTransId;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class transactionResponsePrePaidCard : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string requestedAmount;
/// <remarks/>
public string approvedAmount;
/// <remarks/>
public string balanceOnCard;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class transactionResponseMessage : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string code;
/// <remarks/>
public string description;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class transactionResponseError : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string errorCode;
/// <remarks/>
public string errorText;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class transactionResponseSplitTenderPayment : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string transId;
/// <remarks/>
public string responseCode;
/// <remarks/>
public string responseToCustomer;
/// <remarks/>
public string authCode;
/// <remarks/>
public string accountNumber;
/// <remarks/>
public string accountType;
/// <remarks/>
public string requestedAmount;
/// <remarks/>
public string approvedAmount;
/// <remarks/>
public string balanceOnCard;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class userField : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string name;
/// <remarks/>
public string value;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class transactionResponseSecureAcceptance : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string SecureAcceptanceUrl;
/// <remarks/>
public string PayerID;
/// <remarks/>
public string PayerEmail;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class transactionResponseEmvResponse : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string tlvData;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("tag", IsNullable=false)]
public emvTag[] tags;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class emvTag : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string name;
/// <remarks/>
public string value;
/// <remarks/>
public string formatted;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerProfileIdType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string customerProfileId;
/// <remarks/>
public string customerPaymentProfileId;
/// <remarks/>
public string customerAddressId;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class returnedItemType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string id;
/// <remarks/>
public System.DateTime dateUTC;
/// <remarks/>
public System.DateTime dateLocal;
/// <remarks/>
public string code;
/// <remarks/>
public string description;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class transactionDetailsType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string transId;
/// <remarks/>
public string refTransId;
/// <remarks/>
public string splitTenderId;
/// <remarks/>
public System.DateTime submitTimeUTC;
/// <remarks/>
public System.DateTime submitTimeLocal;
/// <remarks/>
public string transactionType;
/// <remarks/>
public string transactionStatus;
/// <remarks/>
public int responseCode;
/// <remarks/>
public int responseReasonCode;
/// <remarks/>
public subscriptionPaymentType subscription;
/// <remarks/>
public string responseReasonDescription;
/// <remarks/>
public string authCode;
/// <remarks/>
public string AVSResponse;
/// <remarks/>
public string cardCodeResponse;
/// <remarks/>
public string CAVVResponse;
/// <remarks/>
public string FDSFilterAction;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("FDSFilter", IsNullable=false)]
public FDSFilterType[] FDSFilters;
/// <remarks/>
public batchDetailsType batch;
/// <remarks/>
public orderExType order;
/// <remarks/>
public decimal requestedAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool requestedAmountSpecified;
/// <remarks/>
public decimal authAmount;
/// <remarks/>
public decimal settleAmount;
/// <remarks/>
public extendedAmountType tax;
/// <remarks/>
public extendedAmountType shipping;
/// <remarks/>
public extendedAmountType duty;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("lineItem", IsNullable=false)]
public lineItemType[] lineItems;
/// <remarks/>
public decimal prepaidBalanceRemaining;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool prepaidBalanceRemainingSpecified;
/// <remarks/>
public bool taxExempt;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool taxExemptSpecified;
/// <remarks/>
public paymentMaskedType payment;
/// <remarks/>
public customerDataType customer;
/// <remarks/>
public customerAddressType billTo;
/// <remarks/>
public nameAndAddressType shipTo;
/// <remarks/>
public bool recurringBilling;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool recurringBillingSpecified;
/// <remarks/>
public string customerIP;
/// <remarks/>
public string product;
/// <remarks/>
public string entryMode;
/// <remarks/>
public string marketType;
/// <remarks/>
public string mobileDeviceId;
/// <remarks/>
public string customerSignature;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("returnedItem", IsNullable=false)]
public returnedItemType[] returnedItems;
/// <remarks/>
public solutionType solution;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("tag", IsNullable=false)]
public transactionDetailsTypeTag[] emvDetails;
/// <remarks/>
public customerProfileIdType profile;
/// <remarks/>
public extendedAmountType surcharge;
/// <remarks/>
public string employeeId;
/// <remarks/>
public extendedAmountType tip;
/// <remarks/>
public otherTaxType otherTax;
/// <remarks/>
public nameAndAddressType shipFrom;
/// <remarks/>
public string networkTransId;
/// <remarks/>
public string originalNetworkTransId;
/// <remarks/>
public decimal originalAuthAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool originalAuthAmountSpecified;
/// <remarks/>
public string authorizationIndicator;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class subscriptionPaymentType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public int id;
/// <remarks/>
public int payNum;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class FDSFilterType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string name;
/// <remarks/>
public string action;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class batchDetailsType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string batchId;
/// <remarks/>
public System.DateTime settlementTimeUTC;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool settlementTimeUTCSpecified;
/// <remarks/>
public System.DateTime settlementTimeLocal;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool settlementTimeLocalSpecified;
/// <remarks/>
public string settlementState;
/// <remarks/>
public string paymentMethod;
/// <remarks/>
public string marketType;
/// <remarks/>
public string product;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("statistic", IsNullable=false)]
public batchStatisticType[] statistics;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class batchStatisticType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string accountType;
/// <remarks/>
public decimal chargeAmount;
/// <remarks/>
public int chargeCount;
/// <remarks/>
public decimal refundAmount;
/// <remarks/>
public int refundCount;
/// <remarks/>
public int voidCount;
/// <remarks/>
public int declineCount;
/// <remarks/>
public int errorCount;
/// <remarks/>
public decimal returnedItemAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool returnedItemAmountSpecified;
/// <remarks/>
public int returnedItemCount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool returnedItemCountSpecified;
/// <remarks/>
public decimal chargebackAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool chargebackAmountSpecified;
/// <remarks/>
public int chargebackCount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool chargebackCountSpecified;
/// <remarks/>
public int correctionNoticeCount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool correctionNoticeCountSpecified;
/// <remarks/>
public decimal chargeChargeBackAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool chargeChargeBackAmountSpecified;
/// <remarks/>
public int chargeChargeBackCount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool chargeChargeBackCountSpecified;
/// <remarks/>
public decimal refundChargeBackAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool refundChargeBackAmountSpecified;
/// <remarks/>
public int refundChargeBackCount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool refundChargeBackCountSpecified;
/// <remarks/>
public decimal chargeReturnedItemsAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool chargeReturnedItemsAmountSpecified;
/// <remarks/>
public int chargeReturnedItemsCount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool chargeReturnedItemsCountSpecified;
/// <remarks/>
public decimal refundReturnedItemsAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool refundReturnedItemsAmountSpecified;
/// <remarks/>
public int refundReturnedItemsCount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool refundReturnedItemsCountSpecified;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class orderExType : orderType {
/// <remarks/>
public string purchaseOrderNumber;
}
/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(orderExType))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class orderType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string invoiceNumber;
/// <remarks/>
public string description;
/// <remarks/>
public decimal discountAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool discountAmountSpecified;
/// <remarks/>
public bool taxIsAfterDiscount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool taxIsAfterDiscountSpecified;
/// <remarks/>
public string totalTaxTypeCode;
/// <remarks/>
public string purchaserVATRegistrationNumber;
/// <remarks/>
public string merchantVATRegistrationNumber;
/// <remarks/>
public string vatInvoiceReferenceNumber;
/// <remarks/>
public string purchaserCode;
/// <remarks/>
public string summaryCommodityCode;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(DataType="date")]
public System.DateTime purchaseOrderDateUTC;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool purchaseOrderDateUTCSpecified;
/// <remarks/>
public string supplierOrderReference;
/// <remarks/>
public string authorizedContactName;
/// <remarks/>
public string cardAcceptorRefNumber;
/// <remarks/>
public string amexDataTAA1;
/// <remarks/>
public string amexDataTAA2;
/// <remarks/>
public string amexDataTAA3;
/// <remarks/>
public string amexDataTAA4;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class extendedAmountType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public decimal amount;
/// <remarks/>
public string name;
/// <remarks/>
public string description;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class lineItemType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string itemId;
/// <remarks/>
public string name;
/// <remarks/>
public string description;
/// <remarks/>
public decimal quantity;
/// <remarks/>
public decimal unitPrice;
/// <remarks/>
public bool taxable;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool taxableSpecified;
/// <remarks/>
public string unitOfMeasure;
/// <remarks/>
public string typeOfSupply;
/// <remarks/>
public decimal taxRate;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool taxRateSpecified;
/// <remarks/>
public decimal taxAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool taxAmountSpecified;
/// <remarks/>
public decimal nationalTax;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool nationalTaxSpecified;
/// <remarks/>
public decimal localTax;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool localTaxSpecified;
/// <remarks/>
public decimal vatRate;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool vatRateSpecified;
/// <remarks/>
public string alternateTaxId;
/// <remarks/>
public string alternateTaxType;
/// <remarks/>
public string alternateTaxTypeApplied;
/// <remarks/>
public decimal alternateTaxRate;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool alternateTaxRateSpecified;
/// <remarks/>
public decimal alternateTaxAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool alternateTaxAmountSpecified;
/// <remarks/>
public decimal totalAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool totalAmountSpecified;
/// <remarks/>
public string commodityCode;
/// <remarks/>
public string productCode;
/// <remarks/>
public string productSKU;
/// <remarks/>
public decimal discountRate;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool discountRateSpecified;
/// <remarks/>
public decimal discountAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool discountAmountSpecified;
/// <remarks/>
public bool taxIncludedInTotal;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool taxIncludedInTotalSpecified;
/// <remarks/>
public bool taxIsAfterDiscount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool taxIsAfterDiscountSpecified;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerDataType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public customerTypeEnum type;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool typeSpecified;
/// <remarks/>
public string id;
/// <remarks/>
public string email;
/// <remarks/>
public driversLicenseType driversLicense;
/// <remarks/>
public string taxId;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
individual,
/// <remarks/>
business,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class driversLicenseType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string number;
/// <remarks/>
public string state;
/// <remarks/>
public string dateOfBirth;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class solutionType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string id;
/// <remarks/>
public string name;
/// <remarks/>
public string vendorName;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class transactionDetailsTypeTag : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string tagId;
/// <remarks/>
public string data;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class otherTaxType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public decimal nationalTaxAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool nationalTaxAmountSpecified;
/// <remarks/>
public decimal localTaxAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool localTaxAmountSpecified;
/// <remarks/>
public decimal alternateTaxAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool alternateTaxAmountSpecified;
/// <remarks/>
public string alternateTaxId;
/// <remarks/>
public decimal vatTaxRate;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool vatTaxRateSpecified;
/// <remarks/>
public decimal vatTaxAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool vatTaxAmountSpecified;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class profileTransactionType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("profileTransAuthCapture", typeof(profileTransAuthCaptureType))]
[System.Xml.Serialization.XmlElementAttribute("profileTransAuthOnly", typeof(profileTransAuthOnlyType))]
[System.Xml.Serialization.XmlElementAttribute("profileTransCaptureOnly", typeof(profileTransCaptureOnlyType))]
[System.Xml.Serialization.XmlElementAttribute("profileTransPriorAuthCapture", typeof(profileTransPriorAuthCaptureType))]
[System.Xml.Serialization.XmlElementAttribute("profileTransRefund", typeof(profileTransRefundType))]
[System.Xml.Serialization.XmlElementAttribute("profileTransVoid", typeof(profileTransVoidType))]
public object Item;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class profileTransAuthCaptureType : profileTransOrderType {
}
/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransCaptureOnlyType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransAuthOnlyType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransAuthCaptureType))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class profileTransOrderType : profileTransAmountType {
/// <remarks/>
public string customerProfileId;
/// <remarks/>
public string customerPaymentProfileId;
/// <remarks/>
public string customerShippingAddressId;
/// <remarks/>
public orderExType order;
/// <remarks/>
public bool taxExempt;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool taxExemptSpecified;
/// <remarks/>
public bool recurringBilling;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool recurringBillingSpecified;
/// <remarks/>
public string cardCode;
/// <remarks/>
public string splitTenderId;
/// <remarks/>
public processingOptions processingOptions;
/// <remarks/>
public subsequentAuthInformation subsequentAuthInformation;
/// <remarks/>
public authorizationIndicatorType authorizationIndicatorType;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class processingOptions : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public bool isFirstRecurringPayment;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool isFirstRecurringPaymentSpecified;
/// <remarks/>
public bool isFirstSubsequentAuth;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool isFirstSubsequentAuthSpecified;
/// <remarks/>
public bool isSubsequentAuth;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool isSubsequentAuthSpecified;
/// <remarks/>
public bool isStoredCredentials;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool isStoredCredentialsSpecified;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class subsequentAuthInformation : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string originalNetworkTransId;
/// <remarks/>
public decimal originalAuthAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool originalAuthAmountSpecified;
/// <remarks/>
public merchantInitTransReasonEnum reason;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool reasonSpecified;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
resubmission,
/// <remarks/>
delayedCharge,
/// <remarks/>
reauthorization,
/// <remarks/>
noShow,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class authorizationIndicatorType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public authIndicatorEnum authorizationIndicator;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool authorizationIndicatorSpecified;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
pre,
/// <remarks/>
final,
}
/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransRefundType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransPriorAuthCaptureType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransOrderType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransCaptureOnlyType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransAuthOnlyType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransAuthCaptureType))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class profileTransAmountType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public decimal amount;
/// <remarks/>
public extendedAmountType tax;
/// <remarks/>
public extendedAmountType shipping;
/// <remarks/>
public extendedAmountType duty;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("lineItems")]
public lineItemType[] lineItems;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class profileTransRefundType : profileTransAmountType {
/// <remarks/>
public string customerProfileId;
/// <remarks/>
public string customerPaymentProfileId;
/// <remarks/>
public string customerShippingAddressId;
/// <remarks/>
public string creditCardNumberMasked;
/// <remarks/>
public string bankRoutingNumberMasked;
/// <remarks/>
public string bankAccountNumberMasked;
/// <remarks/>
public orderExType order;
/// <remarks/>
public string transId;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class profileTransPriorAuthCaptureType : profileTransAmountType {
/// <remarks/>
public string customerProfileId;
/// <remarks/>
public string customerPaymentProfileId;
/// <remarks/>
public string customerShippingAddressId;
/// <remarks/>
public string transId;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class profileTransCaptureOnlyType : profileTransOrderType {
/// <remarks/>
public string approvalCode;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class profileTransAuthOnlyType : profileTransOrderType {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class profileTransVoidType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string customerProfileId;
/// <remarks/>
public string customerPaymentProfileId;
/// <remarks/>
public string customerShippingAddressId;
/// <remarks/>
public string transId;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class paymentProfile : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string paymentProfileId;
/// <remarks/>
public string cardCode;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerProfilePaymentType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public bool createProfile;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool createProfileSpecified;
/// <remarks/>
public string customerProfileId;
/// <remarks/>
public paymentProfile paymentProfile;
/// <remarks/>
public string shippingProfileId;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class transactionRequestType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string transactionType;
/// <remarks/>
public decimal amount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool amountSpecified;
/// <remarks/>
public string currencyCode;
/// <remarks/>
public paymentType payment;
/// <remarks/>
public customerProfilePaymentType profile;
/// <remarks/>
public solutionType solution;
/// <remarks/>
public string callId;
/// <remarks/>
public string terminalNumber;
/// <remarks/>
public string authCode;
/// <remarks/>
public string refTransId;
/// <remarks/>
public string splitTenderId;
/// <remarks/>
public orderType order;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("lineItem", IsNullable=false)]
public lineItemType[] lineItems;
/// <remarks/>
public extendedAmountType tax;
/// <remarks/>
public extendedAmountType duty;
/// <remarks/>
public extendedAmountType shipping;
/// <remarks/>
public bool taxExempt;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool taxExemptSpecified;
/// <remarks/>
public string poNumber;
/// <remarks/>
public customerDataType customer;
/// <remarks/>
public customerAddressType billTo;
/// <remarks/>
public nameAndAddressType shipTo;
/// <remarks/>
public string customerIP;
/// <remarks/>
public ccAuthenticationType cardholderAuthentication;
/// <remarks/>
public transRetailInfoType retail;
/// <remarks/>
public string employeeId;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("setting", IsNullable=false)]
public settingType[] transactionSettings;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)]
public userField[] userFields;
/// <remarks/>
public extendedAmountType surcharge;
/// <remarks/>
public string merchantDescriptor;
/// <remarks/>
public subMerchantType subMerchant;
/// <remarks/>
public extendedAmountType tip;
/// <remarks/>
public processingOptions processingOptions;
/// <remarks/>
public subsequentAuthInformation subsequentAuthInformation;
/// <remarks/>
public otherTaxType otherTax;
/// <remarks/>
public nameAndAddressType shipFrom;
/// <remarks/>
public authorizationIndicatorType authorizationIndicatorType;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class paymentType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("bankAccount", typeof(bankAccountType))]
[System.Xml.Serialization.XmlElementAttribute("creditCard", typeof(creditCardType))]
[System.Xml.Serialization.XmlElementAttribute("emv", typeof(paymentEmvType))]
[System.Xml.Serialization.XmlElementAttribute("encryptedTrackData", typeof(encryptedTrackDataType))]
[System.Xml.Serialization.XmlElementAttribute("opaqueData", typeof(opaqueDataType))]
[System.Xml.Serialization.XmlElementAttribute("payPal", typeof(payPalType))]
[System.Xml.Serialization.XmlElementAttribute("trackData", typeof(creditCardTrackType))]
public object Item;
/// <remarks/>
public string dataSource;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class bankAccountType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public bankAccountTypeEnum accountType;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool accountTypeSpecified;
/// <remarks/>
public string routingNumber;
/// <remarks/>
public string accountNumber;
/// <remarks/>
public string nameOnAccount;
/// <remarks/>
public echeckTypeEnum echeckType;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool echeckTypeSpecified;
/// <remarks/>
public string bankName;
/// <remarks/>
public string checkNumber;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class creditCardType : creditCardSimpleType {
/// <remarks/>
public string cardCode;
/// <remarks/>
public bool isPaymentToken;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool isPaymentTokenSpecified;
/// <remarks/>
public string cryptogram;
/// <remarks/>
public string tokenRequestorName;
/// <remarks/>
public string tokenRequestorId;
/// <remarks/>
public string tokenRequestorEci;
}
/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(creditCardType))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class creditCardSimpleType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string cardNumber;
/// <remarks/>
public string expirationDate;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class paymentEmvType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public object emvData;
/// <remarks/>
public object emvDescriptor;
/// <remarks/>
public object emvVersion;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class encryptedTrackDataType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public KeyBlock FormOfPayment;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class KeyBlock : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public KeyValue Value;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class KeyValue : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public EncodingType Encoding;
/// <remarks/>
public EncryptionAlgorithmType EncryptionAlgorithm;
/// <remarks/>
public KeyManagementScheme Scheme;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
Base64,
/// <remarks/>
Hex,
}
/// <remarks/>
[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 {
/// <remarks/>
TDES,
/// <remarks/>
AES,
/// <remarks/>
RSA,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class KeyManagementScheme : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public KeyManagementSchemeDUKPT DUKPT;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class KeyManagementSchemeDUKPT : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public OperationType Operation;
/// <remarks/>
public KeyManagementSchemeDUKPTMode Mode;
/// <remarks/>
public KeyManagementSchemeDUKPTDeviceInfo DeviceInfo;
/// <remarks/>
public KeyManagementSchemeDUKPTEncryptedData EncryptedData;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
DECRYPT,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class KeyManagementSchemeDUKPTMode : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string PIN;
/// <remarks/>
public string Data;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class KeyManagementSchemeDUKPTDeviceInfo : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string Description;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class KeyManagementSchemeDUKPTEncryptedData : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string Value;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class payPalType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string successUrl;
/// <remarks/>
public string cancelUrl;
/// <remarks/>
public string paypalLc;
/// <remarks/>
public string paypalHdrImg;
/// <remarks/>
public string paypalPayflowcolor;
/// <remarks/>
public string payerID;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class creditCardTrackType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("track1", typeof(string))]
[System.Xml.Serialization.XmlElementAttribute("track2", typeof(string))]
[System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")]
public string Item;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public ItemChoiceType1 ItemElementName;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
track1,
/// <remarks/>
track2,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class ccAuthenticationType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string authenticationIndicator;
/// <remarks/>
public string cardholderAuthenticationValue;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class transRetailInfoType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
[System.ComponentModel.DefaultValueAttribute("2")]
public string marketType;
/// <remarks/>
public string deviceType;
/// <remarks/>
public string customerSignature;
/// <remarks/>
public string terminalNumber;
public transRetailInfoType() {
this.marketType = "2";
}
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class settingType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string settingName;
/// <remarks/>
public string settingValue;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class subMerchantType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string identifier;
/// <remarks/>
public string doingBusinessAs;
/// <remarks/>
public string paymentServiceProviderName;
/// <remarks/>
public string paymentServiceFacilitator;
/// <remarks/>
public string streetAddress;
/// <remarks/>
public string phone;
/// <remarks/>
public string email;
/// <remarks/>
public string postalCode;
/// <remarks/>
public string city;
/// <remarks/>
public string regionCode;
/// <remarks/>
public string countryCode;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class mobileDeviceType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string mobileDeviceId;
/// <remarks/>
public string description;
/// <remarks/>
public string phoneNumber;
/// <remarks/>
public string devicePlatform;
/// <remarks/>
public deviceActivationEnum deviceActivation;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool deviceActivationSpecified;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
Activate,
/// <remarks/>
Disable,
}
/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(customerPaymentProfileMaskedType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(customerPaymentProfileType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(customerPaymentProfileExType))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerPaymentProfileBaseType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public customerTypeEnum customerType;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool customerTypeSpecified;
/// <remarks/>
public customerAddressType billTo;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerPaymentProfileMaskedType : customerPaymentProfileBaseType {
/// <remarks/>
public string customerProfileId;
/// <remarks/>
public string customerPaymentProfileId;
/// <remarks/>
public bool defaultPaymentProfile;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool defaultPaymentProfileSpecified;
/// <remarks/>
public paymentMaskedType payment;
/// <remarks/>
public driversLicenseMaskedType driversLicense;
/// <remarks/>
public string taxId;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("subscriptionId", IsNullable=false)]
public string[] subscriptionIds;
/// <remarks/>
public string originalNetworkTransId;
/// <remarks/>
public decimal originalAuthAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool originalAuthAmountSpecified;
/// <remarks/>
public bool excludeFromAccountUpdater;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool excludeFromAccountUpdaterSpecified;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class driversLicenseMaskedType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string number;
/// <remarks/>
public string state;
/// <remarks/>
public string dateOfBirth;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(customerPaymentProfileExType))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerPaymentProfileType : customerPaymentProfileBaseType {
/// <remarks/>
public paymentType payment;
/// <remarks/>
public driversLicenseType driversLicense;
/// <remarks/>
public string taxId;
/// <remarks/>
public bool defaultPaymentProfile;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool defaultPaymentProfileSpecified;
/// <remarks/>
public subsequentAuthInformation subsequentAuthInformation;
/// <remarks/>
public bool excludeFromAccountUpdater;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool excludeFromAccountUpdaterSpecified;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerPaymentProfileExType : customerPaymentProfileType {
/// <remarks/>
public string customerPaymentProfileId;
}
/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(customerProfileExType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(customerProfileMaskedType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(customerProfileInfoExType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(subscriptionCustomerProfileType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(customerProfileType))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerProfileBaseType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string merchantCustomerId;
/// <remarks/>
public string description;
/// <remarks/>
public string email;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(customerProfileMaskedType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(customerProfileInfoExType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(subscriptionCustomerProfileType))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerProfileExType : customerProfileBaseType {
/// <remarks/>
public string customerProfileId;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerProfileMaskedType : customerProfileExType {
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("paymentProfiles")]
public customerPaymentProfileMaskedType[] paymentProfiles;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("shipToList")]
public customerAddressExType[] shipToList;
/// <remarks/>
public customerProfileTypeEnum profileType;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool profileTypeSpecified;
}
/// <remarks/>
[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 {
/// <remarks/>
regular,
/// <remarks/>
guest,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerProfileInfoExType : customerProfileExType {
/// <remarks/>
public customerProfileTypeEnum profileType;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool profileTypeSpecified;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class subscriptionCustomerProfileType : customerProfileExType {
/// <remarks/>
public customerPaymentProfileMaskedType paymentProfile;
/// <remarks/>
public customerAddressExType shippingProfile;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerProfileType : customerProfileBaseType {
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("paymentProfiles")]
public customerPaymentProfileType[] paymentProfiles;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("shipToList")]
public customerAddressType[] shipToList;
/// <remarks/>
public customerProfileTypeEnum profileType;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool profileTypeSpecified;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class ARBSubscriptionMaskedType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string name;
/// <remarks/>
public paymentScheduleType paymentSchedule;
/// <remarks/>
public decimal amount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool amountSpecified;
/// <remarks/>
public decimal trialAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool trialAmountSpecified;
/// <remarks/>
public ARBSubscriptionStatusEnum status;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool statusSpecified;
/// <remarks/>
public subscriptionCustomerProfileType profile;
/// <remarks/>
public orderType order;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)]
public arbTransaction[] arbTransactions;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class paymentScheduleType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public paymentScheduleTypeInterval interval;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(DataType="date")]
public System.DateTime startDate;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool startDateSpecified;
/// <remarks/>
public short totalOccurrences;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool totalOccurrencesSpecified;
/// <remarks/>
public short trialOccurrences;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool trialOccurrencesSpecified;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class paymentScheduleTypeInterval : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public short length;
/// <remarks/>
public ARBSubscriptionUnitEnum unit;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
days,
/// <remarks/>
months,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class arbTransaction : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string transId;
/// <remarks/>
public string response;
/// <remarks/>
public System.DateTime submitTimeUTC;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool submitTimeUTCSpecified;
/// <remarks/>
public int payNum;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool payNumSpecified;
/// <remarks/>
public int attemptNum;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool attemptNumSpecified;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class securePaymentContainerErrorType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string code;
/// <remarks/>
public string description;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class customerType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public customerTypeEnum type;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool typeSpecified;
/// <remarks/>
public string id;
/// <remarks/>
public string email;
/// <remarks/>
public string phoneNumber;
/// <remarks/>
public string faxNumber;
/// <remarks/>
public driversLicenseType driversLicense;
/// <remarks/>
public string taxId;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class paymentSimpleType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("bankAccount", typeof(bankAccountType))]
[System.Xml.Serialization.XmlElementAttribute("creditCard", typeof(creditCardSimpleType))]
public object Item;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class merchantContactType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string merchantName;
/// <remarks/>
public string merchantAddress;
/// <remarks/>
public string merchantCity;
/// <remarks/>
public string merchantState;
/// <remarks/>
public string merchantZip;
/// <remarks/>
public string merchantPhone;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class ContactDetailType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string email;
/// <remarks/>
public string firstName;
/// <remarks/>
public string lastName;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class permissionType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string permissionName;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(emailSettingsType))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class ArrayOfSetting : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("setting")]
public settingType[] setting;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class emailSettingsType : ArrayOfSetting {
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType="integer")]
public string version;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class fraudInformationType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("fraudFilter", IsNullable=false)]
public string[] fraudFilterList;
/// <remarks/>
public string fraudAction;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class transactionSummaryType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string transId;
/// <remarks/>
public System.DateTime submitTimeUTC;
/// <remarks/>
public System.DateTime submitTimeLocal;
/// <remarks/>
public string transactionStatus;
/// <remarks/>
public string invoiceNumber;
/// <remarks/>
public string firstName;
/// <remarks/>
public string lastName;
/// <remarks/>
public string accountType;
/// <remarks/>
public string accountNumber;
/// <remarks/>
public decimal settleAmount;
/// <remarks/>
public string marketType;
/// <remarks/>
public string product;
/// <remarks/>
public string mobileDeviceId;
/// <remarks/>
public subscriptionPaymentType subscription;
/// <remarks/>
public bool hasReturnedItems;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool hasReturnedItemsSpecified;
/// <remarks/>
public fraudInformationType fraudInformation;
/// <remarks/>
public customerProfileIdType profile;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class ARBSubscriptionType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string name;
/// <remarks/>
public paymentScheduleType paymentSchedule;
/// <remarks/>
public decimal amount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool amountSpecified;
/// <remarks/>
public decimal trialAmount;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool trialAmountSpecified;
/// <remarks/>
public paymentType payment;
/// <remarks/>
public orderType order;
/// <remarks/>
public customerType customer;
/// <remarks/>
public nameAndAddressType billTo;
/// <remarks/>
public nameAndAddressType shipTo;
/// <remarks/>
public customerProfileIdType profile;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class webCheckOutDataTypeToken : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string cardNumber;
/// <remarks/>
public string expirationDate;
/// <remarks/>
public string cardCode;
/// <remarks/>
public string zip;
/// <remarks/>
public string fullName;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class webCheckOutDataType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public webCheckOutTypeEnum type;
/// <remarks/>
public string id;
/// <remarks/>
public webCheckOutDataTypeToken token;
/// <remarks/>
public bankAccountType bankToken;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
PAN,
/// <remarks/>
TOKEN,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class paymentDetails : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string currency;
/// <remarks/>
public string promoCode;
/// <remarks/>
public string misc;
/// <remarks/>
public string giftWrap;
/// <remarks/>
public string discount;
/// <remarks/>
public string tax;
/// <remarks/>
public string shippingHandling;
/// <remarks/>
public string subTotal;
/// <remarks/>
public string orderID;
/// <remarks/>
public string amount;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class fingerPrintType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string hashValue;
/// <remarks/>
public string sequence;
/// <remarks/>
public string timestamp;
/// <remarks/>
public string currencyCode;
/// <remarks/>
public string amount;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class impersonationAuthenticationType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string partnerLoginId;
/// <remarks/>
public string partnerTransactionKey;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class merchantAuthenticationType : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string name;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("accessToken", typeof(string))]
[System.Xml.Serialization.XmlElementAttribute("clientKey", typeof(string))]
[System.Xml.Serialization.XmlElementAttribute("fingerPrint", typeof(fingerPrintType))]
[System.Xml.Serialization.XmlElementAttribute("impersonationAuthentication", typeof(impersonationAuthenticationType))]
[System.Xml.Serialization.XmlElementAttribute("password", typeof(string))]
[System.Xml.Serialization.XmlElementAttribute("sessionToken", typeof(string))]
[System.Xml.Serialization.XmlElementAttribute("transactionKey", typeof(string))]
[System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")]
public object Item;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public ItemChoiceType ItemElementName;
/// <remarks/>
public string mobileDeviceId;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[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 {
/// <remarks/>
accessToken,
/// <remarks/>
clientKey,
/// <remarks/>
fingerPrint,
/// <remarks/>
impersonationAuthentication,
/// <remarks/>
password,
/// <remarks/>
sessionToken,
/// <remarks/>
transactionKey,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class ANetApiRequest : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public merchantAuthenticationType merchantAuthentication;
/// <remarks/>
public string clientId;
/// <remarks/>
public string refId;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class decryptPaymentDataResponse : ANetApiResponse {
/// <remarks/>
public customerAddressType shippingInfo;
/// <remarks/>
public customerAddressType billingInfo;
/// <remarks/>
public creditCardMaskedType cardInfo;
/// <remarks/>
public paymentDetails paymentDetails;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute("ErrorResponse", Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class ANetApiResponse : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string refId;
/// <remarks/>
public messagesType messages;
/// <remarks/>
public string sessionToken;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class securePaymentContainerRequest : ANetApiRequest {
/// <remarks/>
public webCheckOutDataType data;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class securePaymentContainerResponse : ANetApiResponse {
/// <remarks/>
public opaqueDataType opaqueData;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class isAliveRequest : object, System.ComponentModel.INotifyPropertyChanged {
/// <remarks/>
public string refId;
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class isAliveResponse : ANetApiResponse {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class authenticateTestRequest : ANetApiRequest {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class authenticateTestResponse : ANetApiResponse {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class ARBCreateSubscriptionRequest : ANetApiRequest {
/// <remarks/>
public ARBSubscriptionType subscription;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class ARBCreateSubscriptionResponse : ANetApiResponse {
/// <remarks/>
public string subscriptionId;
/// <remarks/>
public customerProfileIdType profile;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class ARBUpdateSubscriptionRequest : ANetApiRequest {
/// <remarks/>
public string subscriptionId;
/// <remarks/>
public ARBSubscriptionType subscription;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class ARBUpdateSubscriptionResponse : ANetApiResponse {
/// <remarks/>
public customerProfileIdType profile;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class ARBCancelSubscriptionRequest : ANetApiRequest {
/// <remarks/>
public string subscriptionId;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class ARBCancelSubscriptionResponse : ANetApiResponse {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class ARBGetSubscriptionStatusRequest : ANetApiRequest {
/// <remarks/>
public string subscriptionId;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class ARBGetSubscriptionStatusResponse : ANetApiResponse {
/// <remarks/>
public ARBSubscriptionStatusEnum status;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool statusSpecified;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class createCustomerProfileRequest : ANetApiRequest {
/// <remarks/>
public customerProfileType profile;
/// <remarks/>
public validationModeEnum validationMode;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool validationModeSpecified;
}
/// <remarks/>
[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 {
/// <remarks/>
none,
/// <remarks/>
testMode,
/// <remarks/>
liveMode,
/// <remarks/>
oldLiveMode,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class createCustomerProfileResponse : ANetApiResponse {
/// <remarks/>
public string customerProfileId;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("numericString", IsNullable=false)]
public string[] customerPaymentProfileIdList;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("numericString", IsNullable=false)]
public string[] customerShippingAddressIdList;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)]
public string[] validationDirectResponseList;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class createCustomerPaymentProfileRequest : ANetApiRequest {
/// <remarks/>
public string customerProfileId;
/// <remarks/>
public customerPaymentProfileType paymentProfile;
/// <remarks/>
public validationModeEnum validationMode;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool validationModeSpecified;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class createCustomerPaymentProfileResponse : ANetApiResponse {
/// <remarks/>
public string customerProfileId;
/// <remarks/>
public string customerPaymentProfileId;
/// <remarks/>
public string validationDirectResponse;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class createCustomerShippingAddressRequest : ANetApiRequest {
/// <remarks/>
public string customerProfileId;
/// <remarks/>
public customerAddressType address;
/// <remarks/>
public bool defaultShippingAddress;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool defaultShippingAddressSpecified;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class createCustomerShippingAddressResponse : ANetApiResponse {
/// <remarks/>
public string customerProfileId;
/// <remarks/>
public string customerAddressId;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class createCustomerProfileFromTransactionRequest : ANetApiRequest {
/// <remarks/>
public string transId;
/// <remarks/>
public customerProfileBaseType customer;
/// <remarks/>
public string customerProfileId;
/// <remarks/>
public bool defaultPaymentProfile;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool defaultPaymentProfileSpecified;
/// <remarks/>
public bool defaultShippingAddress;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool defaultShippingAddressSpecified;
/// <remarks/>
public customerProfileTypeEnum profileType;
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool profileTypeSpecified;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
public partial class getCustomerProfileRequest : ANetApiRequest {
/// <remarks/>
public string customerProfileId;
/// <remarks/>
gitextract_8bz_t022/
├── .github/
│ └── workflows/
│ └── dotnet-workflow.yml
├── .gitignore
├── .gitmodules
├── .travis.yml
├── Authorize.NET/
│ ├── Api/
│ │ ├── Contracts/
│ │ │ └── V1/
│ │ │ ├── AnetApiSchema.generated.cs
│ │ │ ├── RequestFactoryWithSpecified.cs
│ │ │ └── RequestFactoryWithSpecified.generated.org
│ │ ├── ControllerTemplate.cst
│ │ └── Controllers/
│ │ ├── ARBCancelSubscriptionController.cs
│ │ ├── ARBCreateSubscriptionController.cs
│ │ ├── ARBGetSubscriptionController.cs
│ │ ├── ARBGetSubscriptionListController.cs
│ │ ├── ARBGetSubscriptionStatusController.cs
│ │ ├── ARBUpdateSubscriptionController.cs
│ │ ├── Bases/
│ │ │ ├── ApiOperationBase.cs
│ │ │ ├── ErrorResponse.cs
│ │ │ └── IApiOperation.cs
│ │ ├── authenticateTestController.cs
│ │ ├── createCustomerPaymentProfileController.cs
│ │ ├── createCustomerProfileController.cs
│ │ ├── createCustomerProfileFromTransactionController.cs
│ │ ├── createCustomerProfileTransactionController.cs
│ │ ├── createCustomerShippingAddressController.cs
│ │ ├── createFingerPrintController.cs
│ │ ├── createProfileController.cs
│ │ ├── createTransactionController.cs
│ │ ├── decryptPaymentDataController.cs
│ │ ├── deleteCustomerPaymentProfileController.cs
│ │ ├── deleteCustomerProfileController.cs
│ │ ├── deleteCustomerShippingAddressController.cs
│ │ ├── getAUJobDetailsController.cs
│ │ ├── getAUJobSummaryController.cs
│ │ ├── getBatchStatisticsController.cs
│ │ ├── getCustomerPaymentProfileController.cs
│ │ ├── getCustomerPaymentProfileListController.cs
│ │ ├── getCustomerPaymentProfileNonceController.cs
│ │ ├── getCustomerProfileController.cs
│ │ ├── getCustomerProfileIdsController.cs
│ │ ├── getCustomerShippingAddressController.cs
│ │ ├── getHostedPaymentPageController.cs
│ │ ├── getHostedProfilePageController.cs
│ │ ├── getMerchantDetailsController.cs
│ │ ├── getSettledBatchListController.cs
│ │ ├── getTransactionDetailsController.cs
│ │ ├── getTransactionListController.cs
│ │ ├── getTransactionListForCustomerController.cs
│ │ ├── getUnsettledTransactionListController.cs
│ │ ├── isAliveController.cs
│ │ ├── logoutController.cs
│ │ ├── mobileDeviceLoginController.cs
│ │ ├── mobileDeviceRegistrationController.cs
│ │ ├── securePaymentContainerController.cs
│ │ ├── sendCustomerTransactionReceiptController.cs
│ │ ├── transactionController.cs
│ │ ├── transactionResponseEmvController.cs
│ │ ├── updateCustomerPaymentProfileController.cs
│ │ ├── updateCustomerProfileController.cs
│ │ ├── updateCustomerShippingAddressController.cs
│ │ ├── updateHeldTransactionController.cs
│ │ ├── updateMerchantDetailsController.cs
│ │ ├── updateSplitTenderGroupController.cs
│ │ └── validateCustomerPaymentProfileController.cs
│ ├── AuthorizeNET.csproj
│ ├── Environment.cs
│ ├── MarketType.cs
│ ├── Properties/
│ │ └── AssemblyInfo.cs
│ ├── TestFriends.cs
│ ├── Util/
│ │ ├── Constants.cs
│ │ ├── EnumHelper.cs
│ │ ├── HtmlHelper.cs
│ │ ├── HttpUtility.cs
│ │ ├── LogHelper.cs
│ │ ├── SensitiveDataConfigType.cs
│ │ ├── SensitiveDataConsoleLogger.cs
│ │ ├── SensitiveDataTextLogger.cs
│ │ ├── StringUtils.cs
│ │ └── XmlUtility.cs
│ └── Utility/
│ ├── AnetApiSchema.generated.cs
│ ├── AnetRandom.cs
│ ├── ApiFields.cs
│ └── CryptoRandom.cs
├── AuthorizeNET.sln
├── AuthorizeNET.vsmdi
├── AuthorizeNETtest/
│ ├── Api/
│ │ ├── ControllerTemplateTest.cst
│ │ └── Controllers/
│ │ ├── MockTest/
│ │ │ ├── ARBCancelSubscriptionControllerTest.cs
│ │ │ ├── ARBCreateSubscriptionControllerTest.cs
│ │ │ ├── ARBGetSubscriptionControllerTest.cs
│ │ │ ├── ARBGetSubscriptionListControllerTest.cs
│ │ │ ├── ARBGetSubscriptionStatusControllerTest.cs
│ │ │ ├── ARBUpdateSubscriptionControllerTest.cs
│ │ │ ├── authenticateTestControllerTest.cs
│ │ │ ├── createCustomerPaymentProfileControllerTest.cs
│ │ │ ├── createCustomerProfileControllerTest.cs
│ │ │ ├── createCustomerProfileFromTransactionControllerTest.cs
│ │ │ ├── createCustomerProfileTransactionControllerTest.cs
│ │ │ ├── createCustomerShippingAddressControllerTest.cs
│ │ │ ├── createFingerPrintControllerTest.cs
│ │ │ ├── createProfileControllerTest.cs
│ │ │ ├── createTransactionControllerTest.cs
│ │ │ ├── decryptPaymentDataControllerTest.cs
│ │ │ ├── deleteCustomerPaymentProfileControllerTest.cs
│ │ │ ├── deleteCustomerProfileControllerTest.cs
│ │ │ ├── deleteCustomerShippingAddressControllerTest.cs
│ │ │ ├── getAUJobDetailsControllerTest.cs
│ │ │ ├── getAUJobSummaryControllerTest.cs
│ │ │ ├── getBatchStatisticsControllerTest.cs
│ │ │ ├── getCustomerPaymentProfileControllerTest.cs
│ │ │ ├── getCustomerPaymentProfileListControllerTest.cs
│ │ │ ├── getCustomerProfileControllerTest.cs
│ │ │ ├── getCustomerProfileIdsControllerTest.cs
│ │ │ ├── getCustomerShippingAddressControllerTest.cs
│ │ │ ├── getHostedPaymentPageControllerTest.cs
│ │ │ ├── getHostedProfilePageControllerTest.cs
│ │ │ ├── getMerchantDetailsControllerTest.cs
│ │ │ ├── getSettledBatchListControllerTest.cs
│ │ │ ├── getTransactionDetailsControllerTest.cs
│ │ │ ├── getTransactionListControllerTest.cs
│ │ │ ├── getTransactionListForCustomerControllerTest.cs
│ │ │ ├── getUnsettledTransactionListControllerTest.cs
│ │ │ ├── isAliveControllerTest.cs
│ │ │ ├── logoutControllerTest.cs
│ │ │ ├── mobileDeviceLoginControllerTest.cs
│ │ │ ├── mobileDeviceRegistrationControllerTest.cs
│ │ │ ├── securePaymentContainerControllerTest.cs
│ │ │ ├── sendCustomerTransactionReceiptControllerTest.cs
│ │ │ ├── transactionControllerTest.cs
│ │ │ ├── transactionResponseEmvControllerTest.cs
│ │ │ ├── updateCustomerPaymentProfileControllerTest.cs
│ │ │ ├── updateCustomerProfileControllerTest.cs
│ │ │ ├── updateCustomerShippingAddressControllerTest.cs
│ │ │ ├── updateHeldTransactionControllerTest.cs
│ │ │ ├── updateMerchantDetailsControllerTest.cs
│ │ │ ├── updateSplitTenderGroupControllerTest.cs
│ │ │ └── validateCustomerPaymentProfileControllerTest.cs
│ │ ├── SampleTest/
│ │ │ ├── ArbSubscriptionSampleTest.cs
│ │ │ ├── CreateCustomerProfileFromTransactionSampleTest.cs
│ │ │ ├── CreateTransactionSampleTest.cs
│ │ │ ├── CustomerProfileSampleTest.cs
│ │ │ ├── ErrorMessagesSampleTest.cs
│ │ │ └── eCheckTransactionSampleTest.cs
│ │ └── Test/
│ │ ├── APIInvalidCredentials.cs
│ │ ├── AllGeneratedEnumTest.cs
│ │ ├── ApiCoreTestBase.cs
│ │ ├── ArbSubscriptionTest.cs
│ │ └── CreateTransactionTest.cs
│ ├── App.config
│ ├── AuthorizeNETtest.csproj
│ ├── BaseTest.cs
│ ├── NMock3/
│ │ └── NMockTest.cs
│ ├── Properties/
│ │ └── AssemblyInfo.cs
│ ├── UnitTestData.cs
│ ├── WebRequestLocal.cs
│ └── packages.config
├── AuthorizeNet.nuspec
├── CONTRIBUTING.md
├── LICENSE.txt
├── LocalTestRun.testrunconfig
├── MIGRATING.md
├── NUnit-2.6.3/
│ └── license.txt
├── README.md
└── scripts/
├── EnumTemplate.cst
├── generateControllersFromTemplate.cmd
├── generateObjectsFromXsd.cmd
├── generateRequestFactorySpecified.cmd
├── generateTestControllersFromTemplate.cmd
├── generateTestForEnums.cmd
├── getXsdWsdl.cmd
├── masterUpdate.cmd
├── prepareBinariesForVeracodeScan.cmd
└── validateCygwinBinaries.cmd
SYMBOL INDEX (1565 symbols across 137 files)
FILE: Authorize.NET/Api/Contracts/V1/AnetApiSchema.generated.cs
class decryptPaymentDataRequest (line 19) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class opaqueDataType (line 35) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 60) | protected void RaisePropertyChanged(string propertyName) {
class processorType (line 69) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 88) | protected void RaisePropertyChanged(string propertyName) {
class auDetailsType (line 97) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(auDeleteType))]
method RaisePropertyChanged (line 129) | protected void RaisePropertyChanged(string propertyName) {
class auDeleteType (line 138) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class creditCardMaskedType (line 150) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 181) | protected void RaisePropertyChanged(string propertyName) {
class cardArt (line 190) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 214) | protected void RaisePropertyChanged(string propertyName) {
class auUpdateType (line 223) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class auResponseType (line 238) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 256) | protected void RaisePropertyChanged(string propertyName) {
class customerPaymentProfileListItemType (line 265) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 310) | protected void RaisePropertyChanged(string propertyName) {
class customerAddressType (line 319) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerAddressExTy...
class nameAndAddressType (line 338) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerAddressType))]
method RaisePropertyChanged (line 373) | protected void RaisePropertyChanged(string propertyName) {
class customerAddressExType (line 382) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class paymentMaskedType (line 394) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 409) | protected void RaisePropertyChanged(string propertyName) {
class bankAccountMaskedType (line 418) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 453) | protected void RaisePropertyChanged(string propertyName) {
type bankAccountTypeEnum (line 462) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type echeckTypeEnum (line 478) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class tokenMaskedType (line 503) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 524) | protected void RaisePropertyChanged(string propertyName) {
class CustomerPaymentProfileSorting (line 533) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 548) | protected void RaisePropertyChanged(string propertyName) {
type CustomerPaymentProfileOrderFieldEnum (line 557) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerProfileSummaryType (line 567) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 591) | protected void RaisePropertyChanged(string propertyName) {
class SubscriptionDetail (line 600) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 661) | protected void RaisePropertyChanged(string propertyName) {
type ARBSubscriptionStatusEnum (line 670) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type paymentMethodEnum (line 692) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBGetSubscriptionListSorting (line 708) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 723) | protected void RaisePropertyChanged(string propertyName) {
type ARBGetSubscriptionListOrderFieldEnum (line 732) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class Paging (line 766) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 781) | protected void RaisePropertyChanged(string propertyName) {
class TransactionListSorting (line 790) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 805) | protected void RaisePropertyChanged(string propertyName) {
type TransactionListOrderFieldEnum (line 814) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class heldTransactionRequestType (line 827) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 842) | protected void RaisePropertyChanged(string propertyName) {
type afdsTransactionEnum (line 851) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createProfileResponse (line 864) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 887) | protected void RaisePropertyChanged(string propertyName) {
class messagesType (line 896) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 912) | protected void RaisePropertyChanged(string propertyName) {
type messageTypeEnum (line 921) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class messagesTypeMessage (line 934) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 949) | protected void RaisePropertyChanged(string propertyName) {
class transactionResponse (line 958) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1046) | protected void RaisePropertyChanged(string propertyName) {
class transactionResponsePrePaidCard (line 1055) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1073) | protected void RaisePropertyChanged(string propertyName) {
class transactionResponseMessage (line 1082) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1097) | protected void RaisePropertyChanged(string propertyName) {
class transactionResponseError (line 1106) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1121) | protected void RaisePropertyChanged(string propertyName) {
class transactionResponseSplitTenderPayment (line 1130) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1166) | protected void RaisePropertyChanged(string propertyName) {
class userField (line 1175) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1190) | protected void RaisePropertyChanged(string propertyName) {
class transactionResponseSecureAcceptance (line 1199) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1217) | protected void RaisePropertyChanged(string propertyName) {
class transactionResponseEmvResponse (line 1226) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1242) | protected void RaisePropertyChanged(string propertyName) {
class emvTag (line 1251) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1269) | protected void RaisePropertyChanged(string propertyName) {
class customerProfileIdType (line 1278) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1296) | protected void RaisePropertyChanged(string propertyName) {
class returnedItemType (line 1305) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1329) | protected void RaisePropertyChanged(string propertyName) {
class transactionDetailsType (line 1338) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1527) | protected void RaisePropertyChanged(string propertyName) {
class subscriptionPaymentType (line 1536) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1551) | protected void RaisePropertyChanged(string propertyName) {
class FDSFilterType (line 1560) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1575) | protected void RaisePropertyChanged(string propertyName) {
class batchDetailsType (line 1584) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1626) | protected void RaisePropertyChanged(string propertyName) {
class batchStatisticType (line 1635) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1759) | protected void RaisePropertyChanged(string propertyName) {
class orderExType (line 1768) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class orderType (line 1780) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(orderExType))]
method RaisePropertyChanged (line 1857) | protected void RaisePropertyChanged(string propertyName) {
class extendedAmountType (line 1866) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 1884) | protected void RaisePropertyChanged(string propertyName) {
class lineItemType (line 1893) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2032) | protected void RaisePropertyChanged(string propertyName) {
class customerDataType (line 2041) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2069) | protected void RaisePropertyChanged(string propertyName) {
type customerTypeEnum (line 2078) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class driversLicenseType (line 2091) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2109) | protected void RaisePropertyChanged(string propertyName) {
class solutionType (line 2118) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2136) | protected void RaisePropertyChanged(string propertyName) {
class transactionDetailsTypeTag (line 2145) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2160) | protected void RaisePropertyChanged(string propertyName) {
class otherTaxType (line 2169) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2216) | protected void RaisePropertyChanged(string propertyName) {
class profileTransactionType (line 2225) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2243) | protected void RaisePropertyChanged(string propertyName) {
class profileTransAuthCaptureType (line 2252) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class profileTransOrderType (line 2261) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransCapture...
class processingOptions (line 2314) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2351) | protected void RaisePropertyChanged(string propertyName) {
class subsequentAuthInformation (line 2360) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2386) | protected void RaisePropertyChanged(string propertyName) {
type merchantInitTransReasonEnum (line 2395) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class authorizationIndicatorType (line 2414) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2430) | protected void RaisePropertyChanged(string propertyName) {
type authIndicatorEnum (line 2439) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class profileTransAmountType (line 2452) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransRefundT...
method RaisePropertyChanged (line 2483) | protected void RaisePropertyChanged(string propertyName) {
class profileTransRefundType (line 2492) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class profileTransPriorAuthCaptureType (line 2525) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class profileTransCaptureOnlyType (line 2546) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class profileTransAuthOnlyType (line 2558) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class profileTransVoidType (line 2567) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2588) | protected void RaisePropertyChanged(string propertyName) {
class paymentProfile (line 2597) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2612) | protected void RaisePropertyChanged(string propertyName) {
class customerProfilePaymentType (line 2621) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2646) | protected void RaisePropertyChanged(string propertyName) {
class transactionRequestType (line 2655) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2783) | protected void RaisePropertyChanged(string propertyName) {
class paymentType (line 2792) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2814) | protected void RaisePropertyChanged(string propertyName) {
class bankAccountType (line 2823) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2861) | protected void RaisePropertyChanged(string propertyName) {
class creditCardType (line 2870) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class creditCardSimpleType (line 2901) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(creditCardType))]
method RaisePropertyChanged (line 2917) | protected void RaisePropertyChanged(string propertyName) {
class paymentEmvType (line 2926) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2944) | protected void RaisePropertyChanged(string propertyName) {
class encryptedTrackDataType (line 2953) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2965) | protected void RaisePropertyChanged(string propertyName) {
class KeyBlock (line 2974) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 2986) | protected void RaisePropertyChanged(string propertyName) {
class KeyValue (line 2995) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3013) | protected void RaisePropertyChanged(string propertyName) {
type EncodingType (line 3022) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type EncryptionAlgorithmType (line 3035) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class KeyManagementScheme (line 3051) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3063) | protected void RaisePropertyChanged(string propertyName) {
class KeyManagementSchemeDUKPT (line 3072) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3093) | protected void RaisePropertyChanged(string propertyName) {
type OperationType (line 3102) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class KeyManagementSchemeDUKPTMode (line 3112) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3127) | protected void RaisePropertyChanged(string propertyName) {
class KeyManagementSchemeDUKPTDeviceInfo (line 3136) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3148) | protected void RaisePropertyChanged(string propertyName) {
class KeyManagementSchemeDUKPTEncryptedData (line 3157) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3169) | protected void RaisePropertyChanged(string propertyName) {
class payPalType (line 3178) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3205) | protected void RaisePropertyChanged(string propertyName) {
class creditCardTrackType (line 3214) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3233) | protected void RaisePropertyChanged(string propertyName) {
type ItemChoiceType1 (line 3242) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ccAuthenticationType (line 3255) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3270) | protected void RaisePropertyChanged(string propertyName) {
class transRetailInfoType (line 3279) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method transRetailInfoType (line 3299) | public transRetailInfoType() {
method RaisePropertyChanged (line 3305) | protected void RaisePropertyChanged(string propertyName) {
class settingType (line 3314) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3329) | protected void RaisePropertyChanged(string propertyName) {
class subMerchantType (line 3338) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3380) | protected void RaisePropertyChanged(string propertyName) {
class mobileDeviceType (line 3389) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3417) | protected void RaisePropertyChanged(string propertyName) {
type deviceActivationEnum (line 3426) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerPaymentProfileBaseType (line 3439) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerPaymentProf...
method RaisePropertyChanged (line 3461) | protected void RaisePropertyChanged(string propertyName) {
class customerPaymentProfileMaskedType (line 3470) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class driversLicenseMaskedType (line 3522) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3540) | protected void RaisePropertyChanged(string propertyName) {
class customerPaymentProfileType (line 3549) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerPaymentProf...
class customerPaymentProfileExType (line 3585) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerProfileBaseType (line 3597) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerProfileExTy...
method RaisePropertyChanged (line 3620) | protected void RaisePropertyChanged(string propertyName) {
class customerProfileExType (line 3629) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerProfileMask...
class customerProfileMaskedType (line 3644) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type customerProfileTypeEnum (line 3668) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerProfileInfoExType (line 3681) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class subscriptionCustomerProfileType (line 3697) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerProfileType (line 3712) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBSubscriptionMaskedType (line 3736) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3782) | protected void RaisePropertyChanged(string propertyName) {
class paymentScheduleType (line 3791) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3825) | protected void RaisePropertyChanged(string propertyName) {
class paymentScheduleTypeInterval (line 3834) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3849) | protected void RaisePropertyChanged(string propertyName) {
type ARBSubscriptionUnitEnum (line 3858) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class arbTransaction (line 3871) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3907) | protected void RaisePropertyChanged(string propertyName) {
class securePaymentContainerErrorType (line 3916) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3931) | protected void RaisePropertyChanged(string propertyName) {
class customerType (line 3940) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3974) | protected void RaisePropertyChanged(string propertyName) {
class paymentSimpleType (line 3983) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 3997) | protected void RaisePropertyChanged(string propertyName) {
class merchantContactType (line 4006) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 4033) | protected void RaisePropertyChanged(string propertyName) {
class ContactDetailType (line 4042) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 4060) | protected void RaisePropertyChanged(string propertyName) {
class permissionType (line 4069) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 4081) | protected void RaisePropertyChanged(string propertyName) {
class ArrayOfSetting (line 4090) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(emailSettingsType))]
method RaisePropertyChanged (line 4104) | protected void RaisePropertyChanged(string propertyName) {
class emailSettingsType (line 4113) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class fraudInformationType (line 4126) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 4142) | protected void RaisePropertyChanged(string propertyName) {
class transactionSummaryType (line 4151) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 4215) | protected void RaisePropertyChanged(string propertyName) {
class ARBSubscriptionType (line 4224) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 4271) | protected void RaisePropertyChanged(string propertyName) {
class webCheckOutDataTypeToken (line 4280) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 4304) | protected void RaisePropertyChanged(string propertyName) {
class webCheckOutDataType (line 4313) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 4334) | protected void RaisePropertyChanged(string propertyName) {
type webCheckOutTypeEnum (line 4343) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class paymentDetails (line 4356) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 4395) | protected void RaisePropertyChanged(string propertyName) {
class fingerPrintType (line 4404) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 4428) | protected void RaisePropertyChanged(string propertyName) {
class impersonationAuthenticationType (line 4437) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 4452) | protected void RaisePropertyChanged(string propertyName) {
class merchantAuthenticationType (line 4461) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 4491) | protected void RaisePropertyChanged(string propertyName) {
type ItemChoiceType (line 4500) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ANetApiRequest (line 4528) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 4546) | protected void RaisePropertyChanged(string propertyName) {
class decryptPaymentDataResponse (line 4555) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ANetApiResponse (line 4577) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 4596) | protected void RaisePropertyChanged(string propertyName) {
class securePaymentContainerRequest (line 4605) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class securePaymentContainerResponse (line 4618) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class isAliveRequest (line 4631) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 4644) | protected void RaisePropertyChanged(string propertyName) {
class isAliveResponse (line 4653) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class authenticateTestRequest (line 4663) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class authenticateTestResponse (line 4673) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBCreateSubscriptionRequest (line 4683) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBCreateSubscriptionResponse (line 4696) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBUpdateSubscriptionRequest (line 4712) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBUpdateSubscriptionResponse (line 4728) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBCancelSubscriptionRequest (line 4741) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBCancelSubscriptionResponse (line 4754) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBGetSubscriptionStatusRequest (line 4764) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBGetSubscriptionStatusResponse (line 4777) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerProfileRequest (line 4794) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type validationModeEnum (line 4814) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerProfileResponse (line 4833) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerPaymentProfileRequest (line 4858) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerPaymentProfileResponse (line 4881) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerShippingAddressRequest (line 4900) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerShippingAddressResponse (line 4923) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerProfileFromTransactionRequest (line 4939) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerProfileRequest (line 4979) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerProfileResponse (line 5012) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerPaymentProfileRequest (line 5029) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerPaymentProfileResponse (line 5059) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerShippingAddressRequest (line 5072) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerShippingAddressResponse (line 5088) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateCustomerProfileRequest (line 5112) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateCustomerProfileResponse (line 5125) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateCustomerPaymentProfileRequest (line 5135) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateCustomerPaymentProfileResponse (line 5158) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateCustomerShippingAddressRequest (line 5171) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateCustomerShippingAddressResponse (line 5194) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class deleteCustomerProfileRequest (line 5204) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class deleteCustomerProfileResponse (line 5217) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class deleteCustomerPaymentProfileRequest (line 5227) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class deleteCustomerPaymentProfileResponse (line 5243) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class deleteCustomerShippingAddressRequest (line 5253) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class deleteCustomerShippingAddressResponse (line 5269) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerProfileTransactionRequest (line 5279) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerProfileTransactionResponse (line 5295) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class validateCustomerPaymentProfileRequest (line 5311) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class validateCustomerPaymentProfileResponse (line 5336) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerProfileIdsRequest (line 5349) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerProfileIdsResponse (line 5359) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateSplitTenderGroupRequest (line 5373) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type splitTenderStatusEnum (line 5389) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateSplitTenderGroupResponse (line 5405) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getTransactionDetailsRequest (line 5415) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getTransactionDetailsResponse (line 5428) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createTransactionRequest (line 5447) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createTransactionResponse (line 5460) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateHeldTransactionRequest (line 5476) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateHeldTransactionResponse (line 5489) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getBatchStatisticsRequest (line 5502) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getBatchStatisticsResponse (line 5515) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getSettledBatchListRequest (line 5528) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getSettledBatchListResponse (line 5559) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getTransactionListRequest (line 5573) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getTransactionListResponse (line 5592) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getHostedProfilePageRequest (line 5613) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getHostedProfilePageResponse (line 5630) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getUnsettledTransactionListRequest (line 5643) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type TransactionGroupStatusEnum (line 5666) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getHostedPaymentPageRequest (line 5679) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getHostedPaymentPageResponse (line 5696) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getUnsettledTransactionListResponse (line 5709) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class mobileDeviceRegistrationRequest (line 5730) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class mobileDeviceRegistrationResponse (line 5743) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class mobileDeviceLoginRequest (line 5753) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class mobileDeviceLoginResponse (line 5763) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class logoutRequest (line 5783) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class logoutResponse (line 5793) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class sendCustomerTransactionReceiptRequest (line 5803) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class sendCustomerTransactionReceiptResponse (line 5822) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBGetSubscriptionListRequest (line 5832) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type ARBGetSubscriptionListSearchTypeEnum (line 5851) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBGetSubscriptionListResponse (line 5870) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class EnumCollection (line 5891) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method RaisePropertyChanged (line 5931) | protected void RaisePropertyChanged(string propertyName) {
type accountTypeEnum (line 5940) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type cardTypeEnum (line 5968) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type FDSFilterActionEnum (line 5993) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type permissionsEnum (line 6015) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type settingNameEnum (line 6037) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type settlementStateEnum (line 6140) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type transactionStatusEnum (line 6156) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type transactionTypeEnum (line 6235) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerPaymentProfileListRequest (line 6269) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type CustomerPaymentProfileSearchTypeEnum (line 6291) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerPaymentProfileListResponse (line 6301) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBGetSubscriptionRequest (line 6318) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBGetSubscriptionResponse (line 6338) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getTransactionListForCustomerRequest (line 6351) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getAUJobSummaryRequest (line 6373) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getAUJobSummaryResponse (line 6386) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getAUJobDetailsRequest (line 6400) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type AUJobTypeEnum (line 6423) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getAUJobDetailsResponse (line 6439) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getMerchantDetailsRequest (line 6461) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getMerchantDetailsResponse (line 6471) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type paymentMethodsTypeEnum (line 6527) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateMerchantDetailsRequest (line 6573) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateMerchantDetailsResponse (line 6586) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerPaymentProfileNonceRequest (line 6596) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerPaymentProfileNonceResponse (line 6615) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
FILE: Authorize.NET/Api/Contracts/V1/RequestFactoryWithSpecified.cs
class RequestFactoryWithSpecified (line 18) | public static class RequestFactoryWithSpecified
method decryptPaymentDataRequest (line 20) | public static void decryptPaymentDataRequest(decryptPaymentDataRequest...
method opaqueDataType (line 27) | public static void opaqueDataType(opaqueDataType argument)
method processorType (line 35) | public static void processorType(processorType argument)
method customerPaymentProfileListItemType (line 42) | public static void customerPaymentProfileListItemType(customerPaymentP...
method CustomerPaymentProfileSorting (line 53) | public static void CustomerPaymentProfileSorting(CustomerPaymentProfil...
method ARBSubscriptionMaskedType (line 61) | public static void ARBSubscriptionMaskedType(ARBSubscriptionMaskedType...
method subscriptionCustomerProfileType (line 74) | public static void subscriptionCustomerProfileType(subscriptionCustome...
method paymentSimpleType (line 84) | public static void paymentSimpleType(paymentSimpleType argument)
method bankAccountType (line 92) | public static void bankAccountType(bankAccountType argument)
method creditCardSimpleType (line 100) | public static void creditCardSimpleType(creditCardSimpleType argument)
method creditCardType (line 106) | public static void creditCardType(creditCardType argument)
method customerProfileSummaryType (line 114) | public static void customerProfileSummaryType(customerProfileSummaryTy...
method SubscriptionDetail (line 120) | public static void SubscriptionDetail(SubscriptionDetail argument)
method Paging (line 126) | public static void Paging(Paging argument)
method TransactionListSorting (line 133) | public static void TransactionListSorting(TransactionListSorting argum...
method heldTransactionRequestType (line 140) | public static void heldTransactionRequestType(heldTransactionRequestTy...
method ARBGetSubscriptionListSorting (line 147) | public static void ARBGetSubscriptionListSorting(ARBGetSubscriptionLis...
method permissionType (line 154) | public static void permissionType(permissionType argument)
method merchantContactType (line 160) | public static void merchantContactType(merchantContactType argument)
method mobileDeviceType (line 166) | public static void mobileDeviceType(mobileDeviceType argument)
method transactionSummaryType (line 173) | public static void transactionSummaryType(transactionSummaryType argum...
method subscriptionPaymentType (line 183) | public static void subscriptionPaymentType(subscriptionPaymentType arg...
method createProfileResponse (line 189) | public static void createProfileResponse(createProfileResponse argument)
method messagesType (line 196) | public static void messagesType(messagesType argument)
method messagesTypeMessage (line 203) | public static void messagesTypeMessage(messagesTypeMessage argument)
method ArrayOfSetting (line 209) | public static void ArrayOfSetting(ArrayOfSetting argument)
method settingType (line 216) | public static void settingType(settingType argument)
method subMerchantType (line 222) | public static void subMerchantType(subMerchantType argument)
method emailSettingsType (line 228) | public static void emailSettingsType(emailSettingsType argument)
method fraudInformationType (line 236) | public static void fraudInformationType(fraudInformationType argument)
method transRetailInfoType (line 243) | public static void transRetailInfoType(transRetailInfoType argument)
method ccAuthenticationType (line 251) | public static void ccAuthenticationType(ccAuthenticationType argument)
method paymentProfile (line 257) | public static void paymentProfile(paymentProfile argument)
method customerProfilePaymentType (line 263) | public static void customerProfilePaymentType(customerProfilePaymentTy...
method transactionRequestType (line 271) | public static void transactionRequestType(transactionRequestType argum...
method paymentType (line 302) | public static void paymentType(paymentType argument)
method encryptedTrackDataType (line 319) | public static void encryptedTrackDataType(encryptedTrackDataType argum...
method paymentEmvType (line 327) | public static void paymentEmvType(paymentEmvType argument)
method KeyBlock (line 334) | public static void KeyBlock(KeyBlock argument)
method KeyValue (line 341) | public static void KeyValue(KeyValue argument)
method KeyManagementScheme (line 348) | public static void KeyManagementScheme(KeyManagementScheme argument)
method KeyManagementSchemeDUKPT (line 355) | public static void KeyManagementSchemeDUKPT(KeyManagementSchemeDUKPT a...
method KeyManagementSchemeDUKPTMode (line 364) | public static void KeyManagementSchemeDUKPTMode(KeyManagementSchemeDUK...
method KeyManagementSchemeDUKPTDeviceInfo (line 370) | public static void KeyManagementSchemeDUKPTDeviceInfo(KeyManagementSch...
method KeyManagementSchemeDUKPTEncryptedData (line 376) | public static void KeyManagementSchemeDUKPTEncryptedData(KeyManagement...
method payPalType (line 382) | public static void payPalType(payPalType argument)
method creditCardTrackType (line 388) | public static void creditCardTrackType(creditCardTrackType argument)
method solutionType (line 394) | public static void solutionType(solutionType argument)
method orderType (line 400) | public static void orderType(orderType argument)
method orderExType (line 409) | public static void orderExType(orderExType argument)
method lineItemType (line 416) | public static void lineItemType(lineItemType argument)
method extendedAmountType (line 436) | public static void extendedAmountType(extendedAmountType argument)
method customerDataType (line 442) | public static void customerDataType(customerDataType argument)
method driversLicenseType (line 450) | public static void driversLicenseType(driversLicenseType argument)
method customerAddressType (line 456) | public static void customerAddressType(customerAddressType argument)
method nameAndAddressType (line 463) | public static void nameAndAddressType(nameAndAddressType argument)
method customerAddressExType (line 469) | public static void customerAddressExType(customerAddressExType argument)
method userField (line 476) | public static void userField(userField argument)
method returnedItemType (line 482) | public static void returnedItemType(returnedItemType argument)
method batchStatisticType (line 488) | public static void batchStatisticType(batchStatisticType argument)
method batchDetailsType (line 507) | public static void batchDetailsType(batchDetailsType argument)
method FDSFilterType (line 516) | public static void FDSFilterType(FDSFilterType argument)
method transactionDetailsTypeTag (line 523) | public static void transactionDetailsTypeTag(transactionDetailsTypeTag...
method otherTaxType (line 530) | public static void otherTaxType(otherTaxType argument)
method transactionDetailsType (line 541) | public static void transactionDetailsType(transactionDetailsType argum...
method paymentMaskedType (line 573) | public static void paymentMaskedType(paymentMaskedType argument)
method bankAccountMaskedType (line 588) | public static void bankAccountMaskedType(bankAccountMaskedType argument)
method creditCardMaskedType (line 596) | public static void creditCardMaskedType(creditCardMaskedType argument)
method cardArt (line 604) | public static void cardArt(cardArt argument)
method tokenMaskedType (line 610) | public static void tokenMaskedType(tokenMaskedType argument)
method transactionResponse (line 616) | public static void transactionResponse(transactionResponse argument)
method transactionResponseEmvResponse (line 632) | public static void transactionResponseEmvResponse(transactionResponseE...
method transactionResponsePrePaidCard (line 640) | public static void transactionResponsePrePaidCard(transactionResponseP...
method transactionResponseMessage (line 646) | public static void transactionResponseMessage(transactionResponseMessa...
method transactionResponseError (line 652) | public static void transactionResponseError(transactionResponseError a...
method transactionResponseSplitTenderPayment (line 658) | public static void transactionResponseSplitTenderPayment(transactionRe...
method transactionResponseSecureAcceptance (line 664) | public static void transactionResponseSecureAcceptance(transactionResp...
method profileTransVoidType (line 670) | public static void profileTransVoidType(profileTransVoidType argument)
method profileTransAmountType (line 676) | public static void profileTransAmountType(profileTransAmountType argum...
method profileTransRefundType (line 686) | public static void profileTransRefundType(profileTransRefundType argum...
method profileTransPriorAuthCaptureType (line 694) | public static void profileTransPriorAuthCaptureType(profileTransPriorA...
method profileTransOrderType (line 701) | public static void profileTransOrderType(profileTransOrderType argument)
method processingOptions (line 715) | public static void processingOptions(processingOptions argument)
method subsequentAuthInformation (line 725) | public static void subsequentAuthInformation(subsequentAuthInformation...
method authorizationIndicatorType (line 732) | public static void authorizationIndicatorType(authorizationIndicatorTy...
method profileTransCaptureOnlyType (line 739) | public static void profileTransCaptureOnlyType(profileTransCaptureOnly...
method profileTransAuthOnlyType (line 746) | public static void profileTransAuthOnlyType(profileTransAuthOnlyType a...
method profileTransAuthCaptureType (line 753) | public static void profileTransAuthCaptureType(profileTransAuthCapture...
method profileTransactionType (line 760) | public static void profileTransactionType(profileTransactionType argum...
method driversLicenseMaskedType (line 772) | public static void driversLicenseMaskedType(driversLicenseMaskedType a...
method customerPaymentProfileBaseType (line 778) | public static void customerPaymentProfileBaseType(customerPaymentProfi...
method customerPaymentProfileMaskedType (line 786) | public static void customerPaymentProfileMaskedType(customerPaymentPro...
method customerPaymentProfileType (line 797) | public static void customerPaymentProfileType(customerPaymentProfileTy...
method customerPaymentProfileExType (line 809) | public static void customerPaymentProfileExType(customerPaymentProfile...
method customerProfileBaseType (line 816) | public static void customerProfileBaseType(customerProfileBaseType arg...
method customerProfileExType (line 822) | public static void customerProfileExType(customerProfileExType argument)
method customerProfileMaskedType (line 829) | public static void customerProfileMaskedType(customerProfileMaskedType...
method customerProfileInfoExType (line 839) | public static void customerProfileInfoExType(customerProfileInfoExType...
method customerProfileType (line 847) | public static void customerProfileType(customerProfileType argument)
method ContactDetailType (line 857) | public static void ContactDetailType(ContactDetailType argument)
method securePaymentContainerErrorType (line 861) | public static void securePaymentContainerErrorType(securePaymentContai...
method customerType (line 867) | public static void customerType(customerType argument)
method paymentScheduleType (line 875) | public static void paymentScheduleType(paymentScheduleType argument)
method paymentScheduleTypeInterval (line 886) | public static void paymentScheduleTypeInterval(paymentScheduleTypeInte...
method customerProfileIdType (line 891) | public static void customerProfileIdType(customerProfileIdType argument)
method ARBSubscriptionType (line 898) | public static void ARBSubscriptionType(ARBSubscriptionType argument)
method ARBSubscriptionTypeSetTrialAmountSpecified (line 914) | public static void ARBSubscriptionTypeSetTrialAmountSpecified(ARBSubsc...
method paymentDetails (line 922) | public static void paymentDetails(paymentDetails argument)
method fingerPrintType (line 928) | public static void fingerPrintType(fingerPrintType argument)
method impersonationAuthenticationType (line 934) | public static void impersonationAuthenticationType(impersonationAuthen...
method merchantAuthenticationType (line 941) | public static void merchantAuthenticationType(merchantAuthenticationTy...
method ANetApiRequest (line 952) | public static void ANetApiRequest(ANetApiRequest argument)
method decryptPaymentDataResponse (line 959) | public static void decryptPaymentDataResponse(decryptPaymentDataRespon...
method ANetApiResponse (line 969) | public static void ANetApiResponse(ANetApiResponse argument)
method securePaymentContainerRequest (line 976) | public static void securePaymentContainerRequest(securePaymentContaine...
method securePaymentContainerResponse (line 983) | public static void securePaymentContainerResponse(securePaymentContain...
method webCheckOutDataType (line 990) | public static void webCheckOutDataType(webCheckOutDataType argument)
method webCheckOutDataTypeToken (line 997) | public static void webCheckOutDataTypeToken(webCheckOutDataTypeToken a...
method isAliveRequest (line 1003) | public static void isAliveRequest(isAliveRequest argument)
method isAliveRequest (line 1013) | public static void isAliveRequest(ANetApiRequest argument)
method isAliveResponse (line 1019) | public static void isAliveResponse(isAliveResponse argument)
method authenticateTestRequest (line 1025) | public static void authenticateTestRequest(authenticateTestRequest arg...
method authenticateTestResponse (line 1031) | public static void authenticateTestResponse(authenticateTestResponse a...
method ARBCreateSubscriptionRequest (line 1037) | public static void ARBCreateSubscriptionRequest(ARBCreateSubscriptionR...
method ARBCreateSubscriptionResponse (line 1045) | public static void ARBCreateSubscriptionResponse(ARBCreateSubscription...
method ARBUpdateSubscriptionRequest (line 1052) | public static void ARBUpdateSubscriptionRequest(ARBUpdateSubscriptionR...
method ARBUpdateSubscriptionResponse (line 1059) | public static void ARBUpdateSubscriptionResponse(ARBUpdateSubscription...
method ARBCancelSubscriptionRequest (line 1066) | public static void ARBCancelSubscriptionRequest(ARBCancelSubscriptionR...
method ARBCancelSubscriptionResponse (line 1072) | public static void ARBCancelSubscriptionResponse(ARBCancelSubscription...
method ARBGetSubscriptionStatusRequest (line 1078) | public static void ARBGetSubscriptionStatusRequest(ARBGetSubscriptionS...
method ARBGetSubscriptionStatusResponse (line 1084) | public static void ARBGetSubscriptionStatusResponse(ARBGetSubscription...
method createCustomerProfileRequest (line 1091) | public static void createCustomerProfileRequest(createCustomerProfileR...
method createCustomerProfileResponse (line 1099) | public static void createCustomerProfileResponse(createCustomerProfile...
method createCustomerPaymentProfileRequest (line 1105) | public static void createCustomerPaymentProfileRequest(createCustomerP...
method createCustomerPaymentProfileResponse (line 1113) | public static void createCustomerPaymentProfileResponse(createCustomer...
method createCustomerShippingAddressRequest (line 1119) | public static void createCustomerShippingAddressRequest(createCustomer...
method createCustomerShippingAddressResponse (line 1126) | public static void createCustomerShippingAddressResponse(createCustome...
method createCustomerProfileFromTransactionRequest (line 1132) | public static void createCustomerProfileFromTransactionRequest(createC...
method getCustomerProfileRequest (line 1142) | public static void getCustomerProfileRequest(getCustomerProfileRequest...
method getCustomerProfileResponse (line 1151) | public static void getCustomerProfileResponse(getCustomerProfileRespon...
method getCustomerPaymentProfileRequest (line 1158) | public static void getCustomerPaymentProfileRequest(getCustomerPayment...
method getCustomerPaymentProfileResponse (line 1166) | public static void getCustomerPaymentProfileResponse(getCustomerPaymen...
method getCustomerShippingAddressRequest (line 1173) | public static void getCustomerShippingAddressRequest(getCustomerShippi...
method getCustomerShippingAddressResponse (line 1179) | public static void getCustomerShippingAddressResponse(getCustomerShipp...
method updateCustomerProfileRequest (line 1187) | public static void updateCustomerProfileRequest(updateCustomerProfileR...
method updateCustomerProfileResponse (line 1201) | public static void updateCustomerProfileResponse(updateCustomerProfile...
method updateCustomerPaymentProfileRequest (line 1207) | public static void updateCustomerPaymentProfileRequest(updateCustomerP...
method updateCustomerPaymentProfileResponse (line 1215) | public static void updateCustomerPaymentProfileResponse(updateCustomer...
method updateCustomerShippingAddressRequest (line 1221) | public static void updateCustomerShippingAddressRequest(updateCustomer...
method updateCustomerShippingAddressResponse (line 1229) | public static void updateCustomerShippingAddressResponse(updateCustome...
method deleteCustomerProfileRequest (line 1235) | public static void deleteCustomerProfileRequest(deleteCustomerProfileR...
method deleteCustomerProfileResponse (line 1241) | public static void deleteCustomerProfileResponse(deleteCustomerProfile...
method deleteCustomerPaymentProfileRequest (line 1247) | public static void deleteCustomerPaymentProfileRequest(deleteCustomerP...
method deleteCustomerPaymentProfileResponse (line 1253) | public static void deleteCustomerPaymentProfileResponse(deleteCustomer...
method deleteCustomerShippingAddressRequest (line 1259) | public static void deleteCustomerShippingAddressRequest(deleteCustomer...
method deleteCustomerShippingAddressResponse (line 1265) | public static void deleteCustomerShippingAddressResponse(deleteCustome...
method createCustomerProfileTransactionRequest (line 1271) | public static void createCustomerProfileTransactionRequest(createCusto...
method createCustomerProfileTransactionResponse (line 1278) | public static void createCustomerProfileTransactionResponse(createCust...
method validateCustomerPaymentProfileRequest (line 1285) | public static void validateCustomerPaymentProfileRequest(validateCusto...
method validateCustomerPaymentProfileResponse (line 1291) | public static void validateCustomerPaymentProfileResponse(validateCust...
method getCustomerProfileIdsRequest (line 1297) | public static void getCustomerProfileIdsRequest(getCustomerProfileIdsR...
method getCustomerProfileIdsResponse (line 1303) | public static void getCustomerProfileIdsResponse(getCustomerProfileIds...
method updateSplitTenderGroupRequest (line 1309) | public static void updateSplitTenderGroupRequest(updateSplitTenderGrou...
method updateSplitTenderGroupResponse (line 1315) | public static void updateSplitTenderGroupResponse(updateSplitTenderGro...
method getTransactionDetailsRequest (line 1321) | public static void getTransactionDetailsRequest(getTransactionDetailsR...
method getTransactionDetailsResponse (line 1327) | public static void getTransactionDetailsResponse(getTransactionDetails...
method createTransactionRequest (line 1334) | public static void createTransactionRequest(createTransactionRequest a...
method createTransactionResponse (line 1341) | public static void createTransactionResponse(createTransactionResponse...
method updateHeldTransactionRequest (line 1350) | public static void updateHeldTransactionRequest(updateHeldTransactionR...
method updateHeldTransactionResponse (line 1357) | public static void updateHeldTransactionResponse(updateHeldTransaction...
method getBatchStatisticsRequest (line 1365) | public static void getBatchStatisticsRequest(getBatchStatisticsRequest...
method getBatchStatisticsResponse (line 1371) | public static void getBatchStatisticsResponse(getBatchStatisticsRespon...
method getSettledBatchListRequest (line 1378) | public static void getSettledBatchListRequest(getSettledBatchListReque...
method getSettledBatchListResponse (line 1387) | public static void getSettledBatchListResponse(getSettledBatchListResp...
method getTransactionListRequest (line 1394) | public static void getTransactionListRequest(getTransactionListRequest...
method getTransactionListResponse (line 1402) | public static void getTransactionListResponse(getTransactionListRespon...
method getHostedProfilePageRequest (line 1410) | public static void getHostedProfilePageRequest(getHostedProfilePageReq...
method getHostedProfilePageResponse (line 1417) | public static void getHostedProfilePageResponse(getHostedProfilePageRe...
method getUnsettledTransactionListRequest (line 1423) | public static void getUnsettledTransactionListRequest(getUnsettledTran...
method getHostedPaymentPageRequest (line 1433) | public static void getHostedPaymentPageRequest(getHostedPaymentPageReq...
method getHostedPaymentPageResponse (line 1441) | public static void getHostedPaymentPageResponse(getHostedPaymentPageRe...
method getUnsettledTransactionListResponse (line 1448) | public static void getUnsettledTransactionListResponse(getUnsettledTra...
method mobileDeviceRegistrationRequest (line 1456) | public static void mobileDeviceRegistrationRequest(mobileDeviceRegistr...
method mobileDeviceRegistrationResponse (line 1463) | public static void mobileDeviceRegistrationResponse(mobileDeviceRegist...
method mobileDeviceLoginRequest (line 1469) | public static void mobileDeviceLoginRequest(mobileDeviceLoginRequest a...
method mobileDeviceLoginResponse (line 1475) | public static void mobileDeviceLoginResponse(mobileDeviceLoginResponse...
method logoutRequest (line 1484) | public static void logoutRequest(logoutRequest argument)
method logoutResponse (line 1490) | public static void logoutResponse(logoutResponse argument)
method sendCustomerTransactionReceiptRequest (line 1496) | public static void sendCustomerTransactionReceiptRequest(sendCustomerT...
method sendCustomerTransactionReceiptResponse (line 1503) | public static void sendCustomerTransactionReceiptResponse(sendCustomer...
method ARBGetSubscriptionListRequest (line 1509) | public static void ARBGetSubscriptionListRequest(ARBGetSubscriptionLis...
method ARBGetSubscriptionListResponse (line 1517) | public static void ARBGetSubscriptionListResponse(ARBGetSubscriptionLi...
method getCustomerPaymentProfileListRequest (line 1526) | public static void getCustomerPaymentProfileListRequest(getCustomerPay...
method getCustomerPaymentProfileListResponse (line 1534) | public static void getCustomerPaymentProfileListResponse(getCustomerPa...
method ARBGetSubscriptionRequest (line 1541) | public static void ARBGetSubscriptionRequest(ARBGetSubscriptionRequest...
method ARBGetSubscriptionResponse (line 1547) | public static void ARBGetSubscriptionResponse(ARBGetSubscriptionRespon...
method EnumCollection (line 1555) | public static void EnumCollection(EnumCollection argument)
method auDetailsType (line 1564) | public static void auDetailsType(auDetailsType argument)
method auDeleteType (line 1570) | public static void auDeleteType(auDeleteType argument)
method auUpdateType (line 1579) | public static void auUpdateType(auUpdateType argument)
method auResponseType (line 1588) | public static void auResponseType(auResponseType argument)
method emvTag (line 1595) | public static void emvTag(emvTag argument)
method getAUJobSummaryRequest (line 1603) | public static void getAUJobSummaryRequest(getAUJobSummaryRequest argum...
method getAUJobSummaryResponse (line 1609) | public static void getAUJobSummaryResponse(getAUJobSummaryResponse arg...
method getAUJobDetailsRequest (line 1616) | public static void getAUJobDetailsRequest(getAUJobDetailsRequest argum...
method getAUJobDetailsResponse (line 1624) | public static void getAUJobDetailsResponse(getAUJobDetailsResponse arg...
method getMerchantDetailsRequest (line 1633) | public static void getMerchantDetailsRequest(getMerchantDetailsRequest...
method getMerchantDetailsResponse (line 1638) | public static void getMerchantDetailsResponse(getMerchantDetailsRespon...
method getTransactionListForCustomerRequest (line 1649) | public static void getTransactionListForCustomerRequest(getTransaction...
method updateMerchantDetailsRequest (line 1657) | public static void updateMerchantDetailsRequest(updateMerchantDetailsR...
method updateMerchantDetailsResponse (line 1663) | public static void updateMerchantDetailsResponse(updateMerchantDetails...
method getCustomerPaymentProfileNonceRequest (line 1669) | public static void getCustomerPaymentProfileNonceRequest(getCustomerPa...
method getCustomerPaymentProfileNonceResponse (line 1673) | public static void getCustomerPaymentProfileNonceResponse(getCustomerP...
FILE: Authorize.NET/Api/Controllers/ARBCancelSubscriptionController.cs
class ARBCancelSubscriptionController (line 8) | public class ARBCancelSubscriptionController : ApiOperationBase<ARBCance...
method ARBCancelSubscriptionController (line 10) | public ARBCancelSubscriptionController(ARBCancelSubscriptionRequest ap...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/ARBCreateSubscriptionController.cs
class ARBCreateSubscriptionController (line 8) | public class ARBCreateSubscriptionController : ApiOperationBase<ARBCreat...
method ARBCreateSubscriptionController (line 10) | public ARBCreateSubscriptionController(ARBCreateSubscriptionRequest ap...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/ARBGetSubscriptionController.cs
class ARBGetSubscriptionController (line 8) | public class ARBGetSubscriptionController : ApiOperationBase<ARBGetSubsc...
method ARBGetSubscriptionController (line 10) | public ARBGetSubscriptionController(ARBGetSubscriptionRequest apiReque...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 24) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/ARBGetSubscriptionListController.cs
class ARBGetSubscriptionListController (line 8) | public class ARBGetSubscriptionListController : ApiOperationBase<ARBGetS...
method ARBGetSubscriptionListController (line 10) | public ARBGetSubscriptionListController(ARBGetSubscriptionListRequest ...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/ARBGetSubscriptionStatusController.cs
class ARBGetSubscriptionStatusController (line 8) | public class ARBGetSubscriptionStatusController : ApiOperationBase<ARBGe...
method ARBGetSubscriptionStatusController (line 10) | public ARBGetSubscriptionStatusController(ARBGetSubscriptionStatusRequ...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/ARBUpdateSubscriptionController.cs
class ARBUpdateSubscriptionController (line 8) | public class ARBUpdateSubscriptionController : ApiOperationBase<ARBUpdat...
method ARBUpdateSubscriptionController (line 10) | public ARBUpdateSubscriptionController(ARBUpdateSubscriptionRequest ap...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/Bases/ApiOperationBase.cs
class ApiOperationBase (line 14) | public abstract class ApiOperationBase<TQ, TS> : IApiOperation<TQ, TS>
method ApiOperationBase (line 33) | protected ApiOperationBase(TQ apiRequest)
method GetApiRequest (line 56) | protected TQ GetApiRequest() {
method SetApiRequest (line 60) | protected void SetApiRequest(TQ apiRequest) {
method GetApiResponse (line 64) | public TS GetApiResponse() {
method SetApiResponse (line 68) | private void SetApiResponse(TS apiResponse) {
method GetErrorResponse (line 72) | public ANetApiResponse GetErrorResponse() {
method SetErrorResponse (line 76) | private void SetErrorResponse(ANetApiResponse errorResponse) {
method ExecuteWithApiResponse (line 80) | public TS ExecuteWithApiResponse(AuthorizeNet.Environment environment ...
method Execute (line 88) | public void Execute(AuthorizeNet.Environment environment = null)
method GetResultCode (line 125) | public messageTypeEnum GetResultCode() {
method SetResultStatus (line 129) | private void SetResultStatus() {
method GetResults (line 144) | public List<string> GetResults() {
method GetResultMessage (line 148) | private messagesType GetResultMessage() {
method BeforeExecute (line 164) | protected virtual void BeforeExecute() {}
method AfterExecute (line 165) | protected virtual void AfterExecute() { }
method ValidateRequest (line 167) | protected abstract void ValidateRequest();
method Validate (line 169) | private void Validate() {
method ValidateAndSetMerchantAuthentication (line 200) | private void ValidateAndSetMerchantAuthentication()
method SetClientId (line 217) | private void SetClientId()
FILE: Authorize.NET/Api/Controllers/Bases/ErrorResponse.cs
class ErrorResponse (line 12) | abstract class ErrorResponse : ANetApiResponse {
method ToString (line 14) | public new string ToString() {
FILE: Authorize.NET/Api/Controllers/Bases/IApiOperation.cs
type IApiOperation (line 10) | public interface IApiOperation<TQ, TS>
method GetApiResponse (line 14) | TS GetApiResponse();
method GetErrorResponse (line 15) | AuthorizeNet.Api.Contracts.V1.ANetApiResponse GetErrorResponse();
method ExecuteWithApiResponse (line 16) | TS ExecuteWithApiResponse(AuthorizeNet.Environment environment = null);
method Execute (line 17) | void Execute(AuthorizeNet.Environment environment = null);
method GetResultCode (line 18) | AuthorizeNet.Api.Contracts.V1.messageTypeEnum GetResultCode();
method GetResults (line 19) | List<string> GetResults();
FILE: Authorize.NET/Api/Controllers/authenticateTestController.cs
class authenticateTestController (line 8) | public class authenticateTestController : ApiOperationBase<authenticateT...
method authenticateTestController (line 10) | public authenticateTestController(authenticateTestRequest apiRequest) ...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/createCustomerPaymentProfileController.cs
class createCustomerPaymentProfileController (line 8) | public class createCustomerPaymentProfileController : ApiOperationBase<c...
method createCustomerPaymentProfileController (line 10) | public createCustomerPaymentProfileController(createCustomerPaymentPro...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/createCustomerProfileController.cs
class createCustomerProfileController (line 8) | public class createCustomerProfileController : ApiOperationBase<createCu...
method createCustomerProfileController (line 10) | public createCustomerProfileController(createCustomerProfileRequest ap...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/createCustomerProfileFromTransactionController.cs
class createCustomerProfileFromTransactionController (line 8) | public class createCustomerProfileFromTransactionController : ApiOperati...
method createCustomerProfileFromTransactionController (line 11) | public createCustomerProfileFromTransactionController(createCustomerPr...
method ValidateRequest (line 16) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/createCustomerProfileTransactionController.cs
class createCustomerProfileTransactionController (line 8) | public class createCustomerProfileTransactionController : ApiOperationBa...
method createCustomerProfileTransactionController (line 10) | public createCustomerProfileTransactionController(createCustomerProfil...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/createCustomerShippingAddressController.cs
class createCustomerShippingAddressController (line 8) | public class createCustomerShippingAddressController : ApiOperationBase<...
method createCustomerShippingAddressController (line 10) | public createCustomerShippingAddressController(createCustomerShippingA...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/createFingerPrintController.cs
class createFingerPrintController (line 8) | public class createFingerPrintController : ApiOperationBase<createFinger...
method createFingerPrintController (line 10) | public createFingerPrintController(createFingerPrintRequest apiRequest...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/createProfileController.cs
class createProfileController (line 8) | public class createProfileController
method createProfileController (line 12) | public createProfileController(customerProfilePaymentType apiRequest)/...
method ValidateRequest (line 17) | protected void ValidateRequest() {
method BeforeExecute (line 28) | protected void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/createTransactionController.cs
class createTransactionController (line 8) | public class createTransactionController : ApiOperationBase<createTransa...
method createTransactionController (line 10) | public createTransactionController(createTransactionRequest apiRequest...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/decryptPaymentDataController.cs
class decryptPaymentDataController (line 8) | public class decryptPaymentDataController : ApiOperationBase<decryptPaym...
method decryptPaymentDataController (line 10) | public decryptPaymentDataController(decryptPaymentDataRequest apiReque...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/deleteCustomerPaymentProfileController.cs
class deleteCustomerPaymentProfileController (line 8) | public class deleteCustomerPaymentProfileController : ApiOperationBase<d...
method deleteCustomerPaymentProfileController (line 10) | public deleteCustomerPaymentProfileController(deleteCustomerPaymentPro...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/deleteCustomerProfileController.cs
class deleteCustomerProfileController (line 8) | public class deleteCustomerProfileController : ApiOperationBase<deleteCu...
method deleteCustomerProfileController (line 10) | public deleteCustomerProfileController(deleteCustomerProfileRequest ap...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/deleteCustomerShippingAddressController.cs
class deleteCustomerShippingAddressController (line 8) | public class deleteCustomerShippingAddressController : ApiOperationBase<...
method deleteCustomerShippingAddressController (line 10) | public deleteCustomerShippingAddressController(deleteCustomerShippingA...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/getAUJobDetailsController.cs
class getAUJobDetailsController (line 8) | public class getAUJobDetailsController : ApiOperationBase<getAUJobDetail...
method getAUJobDetailsController (line 10) | public getAUJobDetailsController(getAUJobDetailsRequest apiRequest) : ...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/getAUJobSummaryController.cs
class getAUJobSummaryController (line 8) | public class getAUJobSummaryController : ApiOperationBase<getAUJobSummar...
method getAUJobSummaryController (line 10) | public getAUJobSummaryController(getAUJobSummaryRequest apiRequest) : ...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/getBatchStatisticsController.cs
class getBatchStatisticsController (line 8) | public class getBatchStatisticsController : ApiOperationBase<getBatchSta...
method getBatchStatisticsController (line 10) | public getBatchStatisticsController(getBatchStatisticsRequest apiReque...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/getCustomerPaymentProfileController.cs
class getCustomerPaymentProfileController (line 8) | public class getCustomerPaymentProfileController : ApiOperationBase<getC...
method getCustomerPaymentProfileController (line 10) | public getCustomerPaymentProfileController(getCustomerPaymentProfileRe...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/getCustomerPaymentProfileListController.cs
class getCustomerPaymentProfileListController (line 8) | public class getCustomerPaymentProfileListController : ApiOperationBase<...
method getCustomerPaymentProfileListController (line 10) | public getCustomerPaymentProfileListController(getCustomerPaymentProfi...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 25) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/getCustomerPaymentProfileNonceController.cs
class getCustomerPaymentProfileNonceController (line 8) | public class getCustomerPaymentProfileNonceController : ApiOperationBase...
method getCustomerPaymentProfileNonceController (line 10) | public getCustomerPaymentProfileNonceController(getCustomerPaymentProf...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/getCustomerProfileController.cs
class getCustomerProfileController (line 8) | public class getCustomerProfileController : ApiOperationBase<getCustomer...
method getCustomerProfileController (line 10) | public getCustomerProfileController(getCustomerProfileRequest apiReque...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/getCustomerProfileIdsController.cs
class getCustomerProfileIdsController (line 8) | public class getCustomerProfileIdsController : ApiOperationBase<getCusto...
method getCustomerProfileIdsController (line 10) | public getCustomerProfileIdsController(getCustomerProfileIdsRequest ap...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/getCustomerShippingAddressController.cs
class getCustomerShippingAddressController (line 8) | public class getCustomerShippingAddressController : ApiOperationBase<get...
method getCustomerShippingAddressController (line 10) | public getCustomerShippingAddressController(getCustomerShippingAddress...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/getHostedPaymentPageController.cs
class getHostedPaymentPageController (line 8) | public class getHostedPaymentPageController : ApiOperationBase<getHosted...
method getHostedPaymentPageController (line 10) | public getHostedPaymentPageController(getHostedPaymentPageRequest apiR...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/getHostedProfilePageController.cs
class getHostedProfilePageController (line 8) | public class getHostedProfilePageController : ApiOperationBase<getHosted...
method getHostedProfilePageController (line 10) | public getHostedProfilePageController(getHostedProfilePageRequest apiR...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/getMerchantDetailsController.cs
class getMerchantDetailsController (line 8) | public class getMerchantDetailsController : ApiOperationBase<getMerchant...
method getMerchantDetailsController (line 10) | public getMerchantDetailsController(getMerchantDetailsRequest apiReque...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/getSettledBatchListController.cs
class getSettledBatchListController (line 8) | public class getSettledBatchListController : ApiOperationBase<getSettled...
method getSettledBatchListController (line 10) | public getSettledBatchListController(getSettledBatchListRequest apiReq...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/getTransactionDetailsController.cs
class getTransactionDetailsController (line 8) | public class getTransactionDetailsController : ApiOperationBase<getTrans...
method getTransactionDetailsController (line 10) | public getTransactionDetailsController(getTransactionDetailsRequest ap...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/getTransactionListController.cs
class getTransactionListController (line 8) | public class getTransactionListController : ApiOperationBase<getTransact...
method getTransactionListController (line 10) | public getTransactionListController(getTransactionListRequest apiReque...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/getTransactionListForCustomerController.cs
class getTransactionListForCustomerController (line 8) | public class getTransactionListForCustomerController : ApiOperationBase<...
method getTransactionListForCustomerController (line 10) | public getTransactionListForCustomerController(getTransactionListForCu...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/getUnsettledTransactionListController.cs
class getUnsettledTransactionListController (line 8) | public class getUnsettledTransactionListController : ApiOperationBase<ge...
method getUnsettledTransactionListController (line 10) | public getUnsettledTransactionListController(getUnsettledTransactionLi...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/isAliveController.cs
class isAliveController (line 8) | public class isAliveController : ApiOperationBase<ANetApiRequest, isAliv...
method isAliveController (line 11) | public isAliveController(ANetApiRequest apiRequest)
method ValidateRequest (line 16) | override protected void ValidateRequest() {
method BeforeExecute (line 21) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/logoutController.cs
class logoutController (line 8) | public class logoutController : ApiOperationBase<logoutRequest, logoutRe...
method logoutController (line 10) | public logoutController(logoutRequest apiRequest) : base(apiRequest) {
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/mobileDeviceLoginController.cs
class mobileDeviceLoginController (line 8) | public class mobileDeviceLoginController : ApiOperationBase<mobileDevice...
method mobileDeviceLoginController (line 10) | public mobileDeviceLoginController(mobileDeviceLoginRequest apiRequest...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/mobileDeviceRegistrationController.cs
class mobileDeviceRegistrationController (line 8) | public class mobileDeviceRegistrationController : ApiOperationBase<mobil...
method mobileDeviceRegistrationController (line 10) | public mobileDeviceRegistrationController(mobileDeviceRegistrationRequ...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/securePaymentContainerController.cs
class securePaymentContainerController (line 8) | public class securePaymentContainerController : ApiOperationBase<secureP...
method securePaymentContainerController (line 10) | public securePaymentContainerController(securePaymentContainerRequest ...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/sendCustomerTransactionReceiptController.cs
class sendCustomerTransactionReceiptController (line 8) | public class sendCustomerTransactionReceiptController : ApiOperationBase...
method sendCustomerTransactionReceiptController (line 10) | public sendCustomerTransactionReceiptController(sendCustomerTransactio...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/transactionController.cs
class transactionController (line 8) | public class transactionController
method transactionController (line 12) | public transactionController(transactionRequestType apiRequest)
method ValidateRequest (line 18) | protected void ValidateRequest() {
method BeforeExecute (line 29) | protected void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/transactionResponseEmvController.cs
class transactionResponseEmvController (line 8) | public class transactionResponseEmvController : ApiOperationBase<transac...
method transactionResponseEmvController (line 10) | public transactionResponseEmvController(transactionResponseEmvRequest ...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/updateCustomerPaymentProfileController.cs
class updateCustomerPaymentProfileController (line 8) | public class updateCustomerPaymentProfileController : ApiOperationBase<u...
method updateCustomerPaymentProfileController (line 10) | public updateCustomerPaymentProfileController(updateCustomerPaymentPro...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/updateCustomerProfileController.cs
class updateCustomerProfileController (line 8) | public class updateCustomerProfileController : ApiOperationBase<updateCu...
method updateCustomerProfileController (line 10) | public updateCustomerProfileController(updateCustomerProfileRequest ap...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/updateCustomerShippingAddressController.cs
class updateCustomerShippingAddressController (line 8) | public class updateCustomerShippingAddressController : ApiOperationBase<...
method updateCustomerShippingAddressController (line 10) | public updateCustomerShippingAddressController(updateCustomerShippingA...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/updateHeldTransactionController.cs
class updateHeldTransactionController (line 8) | public class updateHeldTransactionController : ApiOperationBase<updateHe...
method updateHeldTransactionController (line 10) | public updateHeldTransactionController(updateHeldTransactionRequest ap...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/updateMerchantDetailsController.cs
class updateMerchantDetailsController (line 8) | public class updateMerchantDetailsController : ApiOperationBase<updateMe...
method updateMerchantDetailsController (line 10) | public updateMerchantDetailsController(updateMerchantDetailsRequest ap...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
method BeforeExecute (line 23) | protected override void BeforeExecute()
FILE: Authorize.NET/Api/Controllers/updateSplitTenderGroupController.cs
class updateSplitTenderGroupController (line 8) | public class updateSplitTenderGroupController : ApiOperationBase<updateS...
method updateSplitTenderGroupController (line 10) | public updateSplitTenderGroupController(updateSplitTenderGroupRequest ...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Api/Controllers/validateCustomerPaymentProfileController.cs
class validateCustomerPaymentProfileController (line 8) | public class validateCustomerPaymentProfileController : ApiOperationBase...
method validateCustomerPaymentProfileController (line 10) | public validateCustomerPaymentProfileController(validateCustomerPaymen...
method ValidateRequest (line 13) | override protected void ValidateRequest() {
FILE: Authorize.NET/Environment.cs
class Environment (line 19) | public class Environment {
method Environment (line 30) | private Environment(String baseUrl, String xmlBaseUrl, String cardPres...
method getBaseUrl (line 39) | public String getBaseUrl() {
method getXmlBaseUrl (line 46) | public String getXmlBaseUrl() {
method getCardPresentUrl (line 53) | public String getCardPresentUrl() {
method createEnvironment (line 65) | public static Environment createEnvironment(String baseUrl, String xml...
method createEnvironment (line 80) | public static Environment createEnvironment(String baseUrl, String xml...
method getIntProperty (line 95) | public static int getIntProperty( String propertyName)
method getBooleanProperty (line 109) | public static bool getBooleanProperty( String propertyName)
method GetProperty (line 129) | public static String GetProperty(String propertyName) {
FILE: Authorize.NET/MarketType.cs
type MarketType (line 6) | public enum MarketType {
FILE: Authorize.NET/Util/Constants.cs
class Constants (line 4) | public static class Constants {
FILE: Authorize.NET/Util/EnumHelper.cs
class EnumHelper (line 9) | [Obsolete("Since the classes using it are deprecated", false)]
method GetEnumDescription (line 13) | public static string GetEnumDescription(Enum value)
FILE: Authorize.NET/Util/HtmlHelper.cs
class HtmlHelper (line 8) | [Obsolete("Since the classes using it are deprecated", false)]
method RelayResponseRedirecter (line 17) | public static string RelayResponseRedirecter(string toUrl) {
FILE: Authorize.NET/Util/HttpUtility.cs
class HttpUtility (line 13) | public static class HttpUtility {
method GetPostUrl (line 24) | private static Uri GetPostUrl(AuthorizeNet.Environment env)
method PostData (line 32) | public static ANetApiResponse PostData<TQ, TS>(AuthorizeNet.Environmen...
method SetProxyIfRequested (line 152) | public static IWebProxy SetProxyIfRequested(IWebProxy proxy)
FILE: Authorize.NET/Util/LogHelper.cs
class LogHelper (line 11) | public static class LogHelper {
method LogHelper (line 13) | static LogHelper() {
method debug (line 16) | public static void debug(Log logger, string format, params object[] ar...
method error (line 21) | public static void error(Log logger, string format, params object[] a...
method info (line 26) | public static void info(Log logger, string format, params object[] ar...
method warn (line 31) | public static void warn(Log logger, string format, params object[] ar...
method getMessage (line 36) | private static string getMessage(Log logger, string format, params obj...
class Log (line 47) | public class Log
method error (line 51) | public void error(string logMessage) { Trace(TraceEventType.Error, log...
method info (line 52) | public void info(string logMessage) { Trace(TraceEventType.Information...
method debug (line 53) | public void debug(string logMessage) { Trace(TraceEventType.Verbose, l...
method warn (line 54) | public void warn(string logMessage) { Trace(TraceEventType.Warning, lo...
method error (line 56) | public void error(object logMessage) { error(logMessage.ToString()); }
method info (line 57) | public void info(object logMessage) { info(logMessage.ToString()); }
method debug (line 58) | public void debug(object logMessage) { debug(logMessage.ToString()); }
method warn (line 59) | public void warn(object logMessage) { warn(logMessage.ToString()); }
method Trace (line 61) | public static void Trace(TraceEventType eventType, string message)
class LogFactory (line 82) | public class LogFactory
method getLog (line 85) | public static Log getLog(Type classType)
FILE: Authorize.NET/Util/SensitiveDataConfigType.cs
class SensitiveTag (line 3) | public class SensitiveTag
method SensitiveTag (line 10) | public SensitiveTag(string tagName, string pattern, string replacement...
class SensitiveDataConfigType (line 19) | public static class SensitiveDataConfigType
FILE: Authorize.NET/Util/SensitiveDataConsoleLogger.cs
class SensitiveDataConsoleLogger (line 5) | public class SensitiveDataConsoleLogger : SensitiveDataTextLogger
method SensitiveDataConsoleLogger (line 7) | public SensitiveDataConsoleLogger() : base (Console.Out) {
method SensitiveDataConsoleLogger (line 10) | public SensitiveDataConsoleLogger(bool useErrorStream) : base (useErro...
FILE: Authorize.NET/Util/SensitiveDataTextLogger.cs
class SensitiveDataTextLogger (line 7) | public class SensitiveDataTextLogger : TextWriterTraceListener
method SensitiveDataTextLogger (line 13) | static SensitiveDataTextLogger()
method SensitiveDataTextLogger (line 17) | public SensitiveDataTextLogger(System.IO.Stream stream) : base(stream)
method SensitiveDataTextLogger (line 21) | public SensitiveDataTextLogger(System.IO.Stream stream, string name) :...
method SensitiveDataTextLogger (line 25) | public SensitiveDataTextLogger(string FileName, string name) : base(Fi...
method SensitiveDataTextLogger (line 29) | public SensitiveDataTextLogger(string FileName) : base(FileName)
method SensitiveDataTextLogger (line 33) | public SensitiveDataTextLogger(System.IO.TextWriter writer, string nam...
method SensitiveDataTextLogger (line 37) | public SensitiveDataTextLogger(System.IO.TextWriter writer) : base(wri...
method LoadSensitiveDataConfig (line 41) | private static void LoadSensitiveDataConfig()
method Write (line 63) | public override void Write(string Msg)
method WriteLine (line 68) | public override void WriteLine(string Msg)
method maskCreditCards (line 75) | public static String maskCreditCards(String str)
method maskSensitiveXmlString (line 84) | public static String maskSensitiveXmlString(String str)
FILE: Authorize.NET/Util/StringUtils.cs
class StringUtils (line 6) | public class StringUtils {
method ParseDouble (line 17) | public static double ParseDouble(string doublestringValue) {
method ParseInt (line 33) | public static int ParseInt(string intstringValue) {
method ParseBool (line 49) | public static bool ParseBool(string boolstringValue) {
FILE: Authorize.NET/Util/XmlUtility.cs
class XmlUtility (line 8) | public static class XmlUtility {
method GetXml (line 12) | public static string GetXml<T>(T entity) //where T: object //MarshalBy...
method Create (line 36) | public static T Create<T>(string xml) //where T: object //MarshalByRef...
class Utf8StringWriter (line 68) | public sealed class Utf8StringWriter : StringWriter
FILE: Authorize.NET/Utility/AnetApiSchema.generated.cs
class decryptPaymentDataRequest (line 19) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class opaqueDataType (line 35) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class processorType (line 60) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class auDetailsType (line 79) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(auDeleteType))]
class auDeleteType (line 111) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class creditCardMaskedType (line 123) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class cardArt (line 154) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class auUpdateType (line 178) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class auResponseType (line 193) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerPaymentProfileListItemType (line 211) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerAddressType (line 256) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerAddressExTy...
class nameAndAddressType (line 275) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerAddressType))]
class customerAddressExType (line 310) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class paymentMaskedType (line 322) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class bankAccountMaskedType (line 337) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type bankAccountTypeEnum (line 372) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type echeckTypeEnum (line 388) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class tokenMaskedType (line 413) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class CustomerPaymentProfileSorting (line 434) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type CustomerPaymentProfileOrderFieldEnum (line 449) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerProfileSummaryType (line 459) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class SubscriptionDetail (line 483) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type ARBSubscriptionStatusEnum (line 544) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type paymentMethodEnum (line 566) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBGetSubscriptionListSorting (line 582) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type ARBGetSubscriptionListOrderFieldEnum (line 597) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class Paging (line 631) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class TransactionListSorting (line 646) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type TransactionListOrderFieldEnum (line 661) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class heldTransactionRequestType (line 674) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type afdsTransactionEnum (line 689) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createProfileResponse (line 702) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class messagesType (line 725) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type messageTypeEnum (line 741) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class messagesTypeMessage (line 754) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class transactionResponse (line 769) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class transactionResponsePrePaidCard (line 857) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class transactionResponseMessage (line 875) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class transactionResponseError (line 890) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class transactionResponseSplitTenderPayment (line 905) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class userField (line 941) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class transactionResponseSecureAcceptance (line 956) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class transactionResponseEmvResponse (line 974) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class emvTag (line 990) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerProfileIdType (line 1008) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class returnedItemType (line 1026) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class transactionDetailsType (line 1050) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class subscriptionPaymentType (line 1239) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class FDSFilterType (line 1254) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class batchDetailsType (line 1269) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class batchStatisticType (line 1311) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class orderExType (line 1435) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class orderType (line 1447) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(orderExType))]
class extendedAmountType (line 1524) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class lineItemType (line 1542) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerDataType (line 1681) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type customerTypeEnum (line 1709) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class driversLicenseType (line 1722) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class solutionType (line 1740) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class transactionDetailsTypeTag (line 1758) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class otherTaxType (line 1773) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class profileTransactionType (line 1820) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class profileTransAuthCaptureType (line 1838) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class profileTransOrderType (line 1847) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransCapture...
class processingOptions (line 1900) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class subsequentAuthInformation (line 1937) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type merchantInitTransReasonEnum (line 1963) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class authorizationIndicatorType (line 1982) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type authIndicatorEnum (line 1998) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class profileTransAmountType (line 2011) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransRefundT...
class profileTransRefundType (line 2042) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class profileTransPriorAuthCaptureType (line 2075) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class profileTransCaptureOnlyType (line 2096) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class profileTransAuthOnlyType (line 2108) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class profileTransVoidType (line 2117) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class paymentProfile (line 2138) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerProfilePaymentType (line 2153) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class transactionRequestType (line 2178) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class paymentType (line 2306) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class bankAccountType (line 2328) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class creditCardType (line 2366) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class creditCardSimpleType (line 2397) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(creditCardType))]
class paymentEmvType (line 2413) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class encryptedTrackDataType (line 2431) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class KeyBlock (line 2443) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class KeyValue (line 2455) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type EncodingType (line 2473) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type EncryptionAlgorithmType (line 2486) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class KeyManagementScheme (line 2502) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class KeyManagementSchemeDUKPT (line 2514) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type OperationType (line 2535) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class KeyManagementSchemeDUKPTMode (line 2545) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class KeyManagementSchemeDUKPTDeviceInfo (line 2560) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class KeyManagementSchemeDUKPTEncryptedData (line 2572) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class payPalType (line 2584) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class creditCardTrackType (line 2611) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type ItemChoiceType1 (line 2630) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ccAuthenticationType (line 2643) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class transRetailInfoType (line 2658) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
method transRetailInfoType (line 2678) | public transRetailInfoType() {
class settingType (line 2684) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class subMerchantType (line 2699) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class mobileDeviceType (line 2741) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type deviceActivationEnum (line 2769) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerPaymentProfileBaseType (line 2782) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerPaymentProf...
class customerPaymentProfileMaskedType (line 2804) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class driversLicenseMaskedType (line 2856) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerPaymentProfileType (line 2874) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerPaymentProf...
class customerPaymentProfileExType (line 2910) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerProfileBaseType (line 2922) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerProfileExTy...
class customerProfileExType (line 2945) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(customerProfileMask...
class customerProfileMaskedType (line 2960) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type customerProfileTypeEnum (line 2984) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerProfileInfoExType (line 2997) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class subscriptionCustomerProfileType (line 3013) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerProfileType (line 3028) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBSubscriptionMaskedType (line 3052) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class paymentScheduleType (line 3098) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class paymentScheduleTypeInterval (line 3132) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type ARBSubscriptionUnitEnum (line 3147) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class arbTransaction (line 3160) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class securePaymentContainerErrorType (line 3196) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class customerType (line 3211) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class paymentSimpleType (line 3245) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class merchantContactType (line 3259) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ContactDetailType (line 3286) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class permissionType (line 3304) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ArrayOfSetting (line 3316) | [System.Xml.Serialization.XmlIncludeAttribute(typeof(emailSettingsType))]
class emailSettingsType (line 3330) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class fraudInformationType (line 3343) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class transactionSummaryType (line 3359) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBSubscriptionType (line 3423) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class webCheckOutDataTypeToken (line 3470) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class webCheckOutDataType (line 3494) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type webCheckOutTypeEnum (line 3515) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class paymentDetails (line 3528) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class fingerPrintType (line 3567) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class impersonationAuthenticationType (line 3591) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class merchantAuthenticationType (line 3606) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type ItemChoiceType (line 3636) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ANetApiRequest (line 3664) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class decryptPaymentDataResponse (line 3682) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ANetApiResponse (line 3704) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class securePaymentContainerRequest (line 3723) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class securePaymentContainerResponse (line 3736) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class isAliveRequest (line 3749) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class isAliveResponse (line 3762) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class authenticateTestRequest (line 3772) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class authenticateTestResponse (line 3782) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBCreateSubscriptionRequest (line 3792) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBCreateSubscriptionResponse (line 3805) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBUpdateSubscriptionRequest (line 3821) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBUpdateSubscriptionResponse (line 3837) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBCancelSubscriptionRequest (line 3850) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBCancelSubscriptionResponse (line 3863) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBGetSubscriptionStatusRequest (line 3873) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBGetSubscriptionStatusResponse (line 3886) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerProfileRequest (line 3903) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type validationModeEnum (line 3923) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerProfileResponse (line 3942) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerPaymentProfileRequest (line 3967) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerPaymentProfileResponse (line 3990) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerShippingAddressRequest (line 4009) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerShippingAddressResponse (line 4032) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerProfileFromTransactionRequest (line 4048) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerProfileRequest (line 4088) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerProfileResponse (line 4121) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerPaymentProfileRequest (line 4138) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerPaymentProfileResponse (line 4168) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerShippingAddressRequest (line 4181) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerShippingAddressResponse (line 4197) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateCustomerProfileRequest (line 4221) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateCustomerProfileResponse (line 4234) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateCustomerPaymentProfileRequest (line 4244) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateCustomerPaymentProfileResponse (line 4267) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateCustomerShippingAddressRequest (line 4280) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateCustomerShippingAddressResponse (line 4303) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class deleteCustomerProfileRequest (line 4313) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class deleteCustomerProfileResponse (line 4326) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class deleteCustomerPaymentProfileRequest (line 4336) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class deleteCustomerPaymentProfileResponse (line 4352) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class deleteCustomerShippingAddressRequest (line 4362) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class deleteCustomerShippingAddressResponse (line 4378) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerProfileTransactionRequest (line 4388) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createCustomerProfileTransactionResponse (line 4404) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class validateCustomerPaymentProfileRequest (line 4420) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class validateCustomerPaymentProfileResponse (line 4445) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerProfileIdsRequest (line 4458) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerProfileIdsResponse (line 4468) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateSplitTenderGroupRequest (line 4482) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type splitTenderStatusEnum (line 4498) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateSplitTenderGroupResponse (line 4514) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getTransactionDetailsRequest (line 4524) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getTransactionDetailsResponse (line 4537) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createTransactionRequest (line 4556) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class createTransactionResponse (line 4569) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateHeldTransactionRequest (line 4585) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateHeldTransactionResponse (line 4598) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getBatchStatisticsRequest (line 4611) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getBatchStatisticsResponse (line 4624) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getSettledBatchListRequest (line 4637) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getSettledBatchListResponse (line 4668) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getTransactionListRequest (line 4682) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getTransactionListResponse (line 4701) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getHostedProfilePageRequest (line 4722) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getHostedProfilePageResponse (line 4739) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getUnsettledTransactionListRequest (line 4752) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type TransactionGroupStatusEnum (line 4775) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getHostedPaymentPageRequest (line 4788) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getHostedPaymentPageResponse (line 4805) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getUnsettledTransactionListResponse (line 4818) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class mobileDeviceRegistrationRequest (line 4839) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class mobileDeviceRegistrationResponse (line 4852) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class mobileDeviceLoginRequest (line 4862) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class mobileDeviceLoginResponse (line 4872) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class logoutRequest (line 4892) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class logoutResponse (line 4902) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class sendCustomerTransactionReceiptRequest (line 4912) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class sendCustomerTransactionReceiptResponse (line 4931) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBGetSubscriptionListRequest (line 4941) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type ARBGetSubscriptionListSearchTypeEnum (line 4960) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBGetSubscriptionListResponse (line 4979) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class EnumCollection (line 5000) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type accountTypeEnum (line 5040) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type cardTypeEnum (line 5068) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type FDSFilterActionEnum (line 5093) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type permissionsEnum (line 5115) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type settingNameEnum (line 5137) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type settlementStateEnum (line 5240) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type transactionStatusEnum (line 5256) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type transactionTypeEnum (line 5335) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerPaymentProfileListRequest (line 5369) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type CustomerPaymentProfileSearchTypeEnum (line 5391) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerPaymentProfileListResponse (line 5401) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBGetSubscriptionRequest (line 5418) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class ARBGetSubscriptionResponse (line 5438) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getTransactionListForCustomerRequest (line 5451) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getAUJobSummaryRequest (line 5473) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getAUJobSummaryResponse (line 5486) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getAUJobDetailsRequest (line 5500) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type AUJobTypeEnum (line 5523) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getAUJobDetailsResponse (line 5539) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getMerchantDetailsRequest (line 5561) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getMerchantDetailsResponse (line 5571) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
type paymentMethodsTypeEnum (line 5627) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateMerchantDetailsRequest (line 5673) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class updateMerchantDetailsResponse (line 5686) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerPaymentProfileNonceRequest (line 5696) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
class getCustomerPaymentProfileNonceResponse (line 5715) | [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
FILE: Authorize.NET/Utility/AnetRandom.cs
class AnetRandom (line 6) | public class AnetRandom
method AnetRandom (line 14) | public AnetRandom() : this(0)
method AnetRandom (line 18) | public AnetRandom(int seed)
method FillBuffer (line 26) | private void FillBuffer()
method Next (line 32) | private int Next()
method Next (line 49) | public int Next(int maxValue)
method Next (line 54) | public int Next(int minValue, int maxValue)
FILE: Authorize.NET/Utility/ApiFields.cs
class ApiFields (line 10) | public class ApiFields
method ApiFields (line 77) | public ApiFields() {
method ApiContainsKey (line 318) | public bool ApiContainsKey (string key)
FILE: Authorize.NET/Utility/CryptoRandom.cs
class CryptoRandom (line 12) | public class CryptoRandom
method CryptoRandom (line 18) | public CryptoRandom() { }
method CryptoRandom (line 19) | public CryptoRandom(Int32 ignoredSeed) { }
method Next (line 21) | public Int32 Next()
method Next (line 27) | public Int32 Next(Int32 maxValue)
method Next (line 34) | public Int32 Next(Int32 minValue, Int32 maxValue)
method NextDouble (line 54) | public double NextDouble()
method NextBytes (line 61) | public void NextBytes(byte[] buffer)
FILE: AuthorizeNETtest/Api/Controllers/MockTest/ARBCancelSubscriptionControllerTest.cs
class ARBCancelSubscriptionTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockARBCancelSubscriptionTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/ARBCreateSubscriptionControllerTest.cs
class ARBCreateSubscriptionTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockARBCreateSubscriptionTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/ARBGetSubscriptionControllerTest.cs
class ARBGetSubscriptionTest (line 13) | [TestFixture]
method SetUpBeforeClass (line 17) | [TestFixtureSetUp]
method TearDownAfterClass (line 23) | [TestFixtureTearDown]
method SetUp (line 29) | [SetUp]
method TearDown (line 35) | [TearDown]
method MockARBGetSubscriptionTest (line 41) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/ARBGetSubscriptionListControllerTest.cs
class ARBGetSubscriptionListTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockARBGetSubscriptionListTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/ARBGetSubscriptionStatusControllerTest.cs
class ARBGetSubscriptionStatusTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockARBGetSubscriptionStatusTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/ARBUpdateSubscriptionControllerTest.cs
class ARBUpdateSubscriptionTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockARBUpdateSubscriptionTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/authenticateTestControllerTest.cs
class authenticateTestTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockauthenticateTestTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/createCustomerPaymentProfileControllerTest.cs
class createCustomerPaymentProfileTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockcreateCustomerPaymentProfileTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/createCustomerProfileControllerTest.cs
class createCustomerProfileTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockcreateCustomerProfileTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/createCustomerProfileFromTransactionControllerTest.cs
class createCustomerProfileFromTransactionTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockcreateCustomerProfileFromTransactionTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/createCustomerProfileTransactionControllerTest.cs
class createCustomerProfileTransactionTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockcreateCustomerProfileTransactionTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/createCustomerShippingAddressControllerTest.cs
class createCustomerShippingAddressTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockcreateCustomerShippingAddressTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/createFingerPrintControllerTest.cs
class createFingerPrintTest (line 12) | [TestFixture]
method SetUpBeforeClass (line 16) | [TestFixtureSetUp]
method TearDownAfterClass (line 22) | [TestFixtureTearDown]
method SetUp (line 28) | [SetUp]
method TearDown (line 34) | [TearDown]
method MockcreateFingerPrintTest (line 40) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/createProfileControllerTest.cs
class createProfileTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockcreateProfileTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/createTransactionControllerTest.cs
class createTransactionTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockcreateTransactionTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/decryptPaymentDataControllerTest.cs
class decryptPaymentDataTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockdecryptPaymentDataTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/deleteCustomerPaymentProfileControllerTest.cs
class deleteCustomerPaymentProfileTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockdeleteCustomerPaymentProfileTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/deleteCustomerProfileControllerTest.cs
class deleteCustomerProfileTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockdeleteCustomerProfileTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/deleteCustomerShippingAddressControllerTest.cs
class deleteCustomerShippingAddressTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockdeleteCustomerShippingAddressTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getAUJobDetailsControllerTest.cs
class getAUJobDetailsTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockgetAUJobDetailsTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getAUJobSummaryControllerTest.cs
class getAUJobSummaryTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockgetAUJobSummaryTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getBatchStatisticsControllerTest.cs
class getBatchStatisticsTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockgetBatchStatisticsTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getCustomerPaymentProfileControllerTest.cs
class getCustomerPaymentProfileTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockgetCustomerPaymentProfileTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getCustomerPaymentProfileListControllerTest.cs
class getCustomerPaymentProfileListTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method GetRandomString (line 39) | string GetRandomString(string title)
method MockgetCustomerPaymentProfileListTest (line 44) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getCustomerProfileControllerTest.cs
class getCustomerProfileTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockgetCustomerProfileTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getCustomerProfileIdsControllerTest.cs
class getCustomerProfileIdsTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockgetCustomerProfileIdsTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getCustomerShippingAddressControllerTest.cs
class getCustomerShippingAddressTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockgetCustomerShippingAddressTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getHostedPaymentPageControllerTest.cs
class getHostedPaymentPageTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockgetHostedPaymentPageTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getHostedProfilePageControllerTest.cs
class getHostedProfilePageTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockgetHostedProfilePageTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getMerchantDetailsControllerTest.cs
class getMerchantDetailsTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockgetMerchantDetailsTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getSettledBatchListControllerTest.cs
class getSettledBatchListTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockgetSettledBatchListTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getTransactionDetailsControllerTest.cs
class getTransactionDetailsTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockgetTransactionDetailsTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getTransactionListControllerTest.cs
class getTransactionListTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockgetTransactionListTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getTransactionListForCustomerControllerTest.cs
class getTransactionListForCustomerTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockgetTransactionListForCustomerTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/getUnsettledTransactionListControllerTest.cs
class getUnsettledTransactionListTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockgetUnsettledTransactionListTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/isAliveControllerTest.cs
class isAliveTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockisAliveTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/logoutControllerTest.cs
class logoutTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MocklogoutTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/mobileDeviceLoginControllerTest.cs
class mobileDeviceLoginTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockmobileDeviceLoginTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/mobileDeviceRegistrationControllerTest.cs
class mobileDeviceRegistrationTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockmobileDeviceRegistrationTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/securePaymentContainerControllerTest.cs
class securePaymentContainerTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MocksecurePaymentContainerTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/sendCustomerTransactionReceiptControllerTest.cs
class sendCustomerTransactionReceiptTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MocksendCustomerTransactionReceiptTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/transactionControllerTest.cs
class transactionTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MocktransactionTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/transactionResponseEmvControllerTest.cs
class transactionResponseEmvTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MocktransactionResponseEmvTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/updateCustomerPaymentProfileControllerTest.cs
class updateCustomerPaymentProfileTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockupdateCustomerPaymentProfileTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/updateCustomerProfileControllerTest.cs
class updateCustomerProfileTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockupdateCustomerProfileTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/updateCustomerShippingAddressControllerTest.cs
class updateCustomerShippingAddressTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockupdateCustomerShippingAddressTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/updateHeldTransactionControllerTest.cs
class updateHeldTransactionTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockupdateHeldTransactionTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/updateMerchantDetailsControllerTest.cs
class updateMerchantDetailsTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockupdateMerchantDetailsTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/updateSplitTenderGroupControllerTest.cs
class updateSplitTenderGroupTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockupdateSplitTenderGroupTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/MockTest/validateCustomerPaymentProfileControllerTest.cs
class validateCustomerPaymentProfileTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method MockvalidateCustomerPaymentProfileTest (line 39) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/SampleTest/ArbSubscriptionSampleTest.cs
class ArbSubscriptionSampleTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 14) | [TestFixtureSetUp]
method TearDownAfterClass (line 20) | [TestFixtureTearDown]
method SetUp (line 26) | [SetUp]
method TearDown (line 31) | [TearDown]
method SampleCodeGetSubscriptionList (line 36) | [Test]
method ARBGetSubscriptionSampleTest (line 112) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/SampleTest/CreateCustomerProfileFromTransactionSampleTest.cs
class CreateCustomerProfileFromTransactionSampleTest (line 12) | [TestFixture]
method SetUpBeforeClass (line 16) | [TestFixtureSetUp]
method TearDownAfterClass (line 22) | [TestFixtureTearDown]
method SetUp (line 28) | [SetUp]
method TearDown (line 34) | [TearDown]
method SampleCodeCreateCustomerProfileFromTransaction (line 40) | [Test]
method GetTransactionId (line 77) | private long GetTransactionId()
method CreateTransactionFromProfile (line 117) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/SampleTest/CreateTransactionSampleTest.cs
class CreateTransactionSampleTest (line 13) | [TestFixture]
method SetUpBeforeClass (line 17) | [TestFixtureSetUp]
method TearDownAfterClass (line 23) | [TestFixtureTearDown]
method SetUp (line 29) | [SetUp]
method TearDown (line 35) | [TearDown]
method SampleCodeCreateTransaction (line 41) | [Test]
method SampleCodeCreateTransactionUsingProfile (line 99) | [Test]
method createProfile (line 158) | private Boolean createProfile(out String customerProfileId, out String...
method SampleCodeCreateTransactionWithCreditCard (line 204) | [Test]
method SampleCodeCreateTransactionWithApplePay (line 232) | [Test]
method SampleCodeCreateTransactionWithVisaCheckOut (line 271) | [Test]
method SampleCodeCreateTransactionWithPayPal (line 312) | [Test]
method SampleCodeCreateCreditRequestForSettledTransaction (line 350) | [Test]
method SampleCodeCreateUnlinkedCredit (line 409) | [Test]
method SampleCodeCreateTransactionPriorAuthCapture (line 439) | [Test]
method TransactionRequest_HandleError (line 499) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/SampleTest/CustomerProfileSampleTest.cs
class CustomerProfileSampleTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 14) | [TestFixtureSetUp]
method TearDownAfterClass (line 20) | [TestFixtureTearDown]
method SetUp (line 26) | [SetUp]
method TearDown (line 32) | [TearDown]
method getCustomerPaymentProfileObject (line 38) | private customerPaymentProfileType getCustomerPaymentProfileObject()
method GetCustomerPaymentProfileListSampleTest (line 60) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/SampleTest/ErrorMessagesSampleTest.cs
class ErrorMessagesSampleTest (line 14) | [TestFixture]
method SetUpBeforeClass (line 18) | [TestFixtureSetUp]
method TearDownAfterClass (line 24) | [TestFixtureTearDown]
method SetUp (line 30) | [SetUp]
method TearDown (line 36) | [TearDown]
method TestErrorMessages_ARB_ExpiredCard (line 42) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/SampleTest/eCheckTransactionSampleTest.cs
class CreateECheckTransactionSampleTest (line 13) | [TestFixture]
method SetUpBeforeClass (line 16) | [TestFixtureSetUp]
method TearDownAfterClass (line 22) | [TestFixtureTearDown]
method SetUp (line 28) | [SetUp]
method TearDown (line 34) | [TearDown]
method CreateTransactionWithECheck_AuthCapture (line 41) | [Test]
method CreateTransactionWithECheckAuth_Only (line 70) | [Test]
method CreateCustomerProfileFromECheckTransaction (line 102) | [Test]
method CreateCreditRequestForSettledECheckTransaction (line 186) | [Test]
method CreateTransactionWithECheckCapturePriorAuth (line 241) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/Test/APIInvalidCredentials.cs
class CredentialsTest (line 11) | [TestFixture]
method SetUpBeforeClass (line 15) | [TestFixtureSetUp]
method TearDownAfterClass (line 21) | [TestFixtureTearDown]
method SetUp (line 27) | [SetUp]
method TearDown (line 33) | [TearDown]
method InvalidCredentialsTest (line 39) | [Test]
method IllFormedCredentialsTest (line 62) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/Test/AllGeneratedEnumTest.cs
class AllGeneratedEnumTest (line 7) | [TestFixture]
method SetUpBeforeClass (line 11) | [TestFixtureSetUp]
method TearDownAfterClass (line 17) | [TestFixtureTearDown]
method SetUp (line 23) | [SetUp]
method TearDown (line 29) | [TearDown]
method AllEnumTest (line 36) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/Test/ApiCoreTestBase.cs
class ApiCoreTestBase (line 20) | [TestFixture]
method ApiCoreTestBase (line 69) | static ApiCoreTestBase() {
method SetUpBeforeClass (line 96) | [TestFixtureSetUp]
method TearDownAfterClass (line 111) | [TestFixtureTearDown]
method SetUp (line 118) | [SetUp]
method TearDown (line 323) | [TearDown]
method GetRandomString (line 328) | string GetRandomString(string title) {
method FormatToPhone (line 332) | public String FormatToPhone(int number) {
method SetValidTaxAmount (line 339) | public decimal SetValidTaxAmount(decimal amount)
method SetValidTransactionAmount (line 344) | public decimal SetValidTransactionAmount(int number)
method SetValidSubscriptionAmount (line 350) | public decimal SetValidSubscriptionAmount(int number)
method setValidAmount (line 355) | private decimal setValidAmount(int number, int maxAmount)
method GetErrorResponse (line 368) | protected ANetApiResponse GetErrorResponse() {
method ExecuteTestRequestWithSuccess (line 377) | protected static TS ExecuteTestRequestWithSuccess<TQ, TS, TT>(TQ reque...
method ExecuteTestRequestWithFailure (line 387) | protected static TS ExecuteTestRequestWithFailure<TQ, TS, TT>(TQ reque...
method ExecuteTestRequest (line 397) | private static TS ExecuteTestRequest<TQ, TS, TT>(bool successExpected,...
method ProcessFailureResult (line 445) | protected static void ProcessFailureResult<TQ, TS, TT>(bool fail, TT c...
method ValidateSuccess (line 466) | protected static void ValidateSuccess<TQ, TS, TT>( TT controller, TS r...
method ValidateFailure (line 477) | protected static void ValidateFailure<TQ, TS, TT>( TT controller, TS r...
method DisplayResponse (line 489) | protected static void DisplayResponse(ANetApiResponse response, String...
method ValidateErrorCode (line 502) | protected void ValidateErrorCode(messagesType messagesType, string err...
method GetFirstErrorCode (line 519) | protected static string GetFirstErrorCode(messagesType messagesType)
method GetFirstErrorText (line 525) | protected static string GetFirstErrorText(messagesType messagesType)
method GetFirstErrorMessage (line 531) | protected static messagesTypeMessage GetFirstErrorMessage(messagesType...
method SetMockControllerExpectations (line 547) | protected void SetMockControllerExpectations<TQ, TS, TT> (
method GetMockController (line 585) | protected Mock<IApiOperation<TQ,TS>> GetMockController<TQ, TS>() wher...
method ShowProperties (line 590) | public static void ShowProperties(Object bean) {
method ProcessCollections (line 642) | public static void ProcessCollections( Type type, String name, Object ...
FILE: AuthorizeNETtest/Api/Controllers/Test/ArbSubscriptionTest.cs
class ArbSubscriptionTest (line 14) | [TestFixture]
method SetUpBeforeClass (line 17) | [TestFixtureSetUp]
method TearDownAfterClass (line 23) | [TestFixtureTearDown]
method SetUp (line 29) | [SetUp]
method TearDown (line 34) | [TearDown]
method TestGetSubscriptionList (line 39) | [Test]
method TestSubscription (line 99) | [Test]
method TestSubscription_ExpiredCC (line 140) | [Test]
method GetSubscriptionSearchCardExpiringThisMonthIssueTest (line 214) | [ExpectedException(typeof(ArgumentException), ExpectedMessage = "Searc...
method GetSubscriptionSearchCardExpiringThisMonthFixTest (line 233) | [Test]
method GetSubscriptionListResponse (line 296) | private ARBGetSubscriptionListResponse GetSubscriptionListResponse(int...
method ARBGetSubscriptionListCheckPagination (line 321) | [Test]
method CreateSubscriptionRequestTest (line 355) | private ARBCreateSubscriptionController CreateSubscriptionRequestTest(...
method SetupSubscriptionListRequest (line 374) | private ARBGetSubscriptionListRequest SetupSubscriptionListRequest(mer...
method CancelSubscription (line 399) | private void CancelSubscription(merchantAuthenticationType merchantAut...
method GetSubscription (line 412) | private ARBSubscriptionStatusEnum GetSubscription(merchantAuthenticati...
method CreateSubscription (line 426) | private string CreateSubscription( merchantAuthenticationType merchant...
method TestSubscription_serialization_error (line 447) | [Test]
FILE: AuthorizeNETtest/Api/Controllers/Test/CreateTransactionTest.cs
class CreateTransactionTest (line 12) | [TestFixture]
method SetUpBeforeClass (line 16) | [TestFixtureSetUp]
method TearDownAfterClass (line 22) | [TestFixtureTearDown]
method SetUp (line 28) | [SetUp]
method TearDown (line 34) | [TearDown]
method CreateProfileWithCreateTransactionRequestTest (line 42) | [Test]
method CreateTransactionRequestTest (line 118) | private createTransactionController CreateTransactionRequestTest(trans...
method CreateRefundWithCustomerProfileRequestTest (line 148) | [Test]
method CreateTransactionShippingAddressTest (line 217) | [Test]
method CreateTransactionInvalidRequestSchemaValidationTest (line 279) | [Test]
method DecryptPaymentDataRequestTest (line 320) | [Test]
FILE: AuthorizeNETtest/BaseTest.cs
class BaseTest (line 11) | [TestFixture]
method BaseTest (line 18) | public BaseTest()
method CheckApiLoginTransactionKey (line 28) | protected string CheckApiLoginTransactionKey()
method LoadLoginTranskey (line 55) | private void LoadLoginTranskey()
method getValidAmount (line 61) | protected decimal getValidAmount()
FILE: AuthorizeNETtest/NMock3/NMockTest.cs
class SampleTest (line 14) | [TestClass]
method Cleanup (line 23) | [TestCleanup]
method PropertyTest (line 30) | [TestMethod]
method MethodTest (line 41) | [TestMethod]
method EventTest (line 56) | [TestMethod]
type ITest (line 71) | public interface ITest
method Method (line 74) | Version Method(int a, int b, int c, int d);
method Method (line 75) | string Method(Version version);
class Controller (line 78) | public class Controller
method Controller (line 82) | public Controller(ITest test)
method PropActions (line 87) | public string PropActions(string arg1)
method GetVersion (line 92) | public Version GetVersion(int a, int b, int c, int d)
method GetVersion (line 96) | public string GetVersion(Version version)
method InitEvents (line 100) | public void InitEvents()
method _test_Event (line 105) | void _test_Event(object sender, EventArgs e)
FILE: AuthorizeNETtest/UnitTestData.cs
class UnitTestData (line 8) | public abstract class UnitTestData
method UnitTestData (line 19) | static UnitTestData()
method GetPropertyFromNames (line 36) | public static string GetPropertyFromNames(string pFirstName, string pS...
FILE: AuthorizeNETtest/WebRequestLocal.cs
class WebRequestCreateLocal (line 12) | public class WebRequestCreateLocal : IWebRequestCreate
method WebRequestCreateLocal (line 14) | public WebRequestCreateLocal()
method WebRequestCreateLocal (line 18) | public WebRequestCreateLocal(string response)
method Create (line 42) | public WebRequest Create(Uri uri)
class WebRequestLocal (line 75) | public class WebRequestLocal : HttpWebRequest
method WebRequestLocal (line 77) | public WebRequestLocal(SerializationInfo serializationInfo, StreamingC...
method GetRequestStream (line 86) | public override Stream GetRequestStream()
method GetResponse (line 93) | public override WebResponse GetResponse()
class WebResponseLocal (line 114) | public class WebResponseLocal : HttpWebResponse
method WebResponseLocal (line 116) | public WebResponseLocal(SerializationInfo serializationInfo, Streaming...
method GetResponseStream (line 123) | public override Stream GetResponseStream()
Condensed preview — 170 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,141K chars).
[
{
"path": ".github/workflows/dotnet-workflow.yml",
"chars": 5622,
"preview": "name: Authorize.net DotNet CI\non:\n push:\n pull_request:\n workflow_dispatch:\nenv:\n sdk_dotnet: 'sdk-dotnet'\n sample_"
},
{
"path": ".gitignore",
"chars": 2695,
"preview": "## Ignore Visual Studio temporary files, build results, and\n## files generated by popular Visual Studio add-ons.\n\n# User"
},
{
"path": ".gitmodules",
"chars": 122,
"preview": "[submodule \"sample-code-csharp\"]\n\tpath = sample-code-csharp\n\turl = https://github.com/Authorizenet/sample-code-csharp.gi"
},
{
"path": ".travis.yml",
"chars": 850,
"preview": "language:\n csharp\n\ndist: trusty\n\ninstall:\n - sudo apt-get install nunit-console\n\nbefore_script:\n - git submodul"
},
{
"path": "Authorize.NET/Api/Contracts/V1/AnetApiSchema.generated.cs",
"chars": 255200,
"preview": "//------------------------------------------------------------------------------\n// <auto-generated>\n// This code w"
},
{
"path": "Authorize.NET/Api/Contracts/V1/RequestFactoryWithSpecified.cs",
"chars": 64673,
"preview": "namespace AuthorizeNet.Api.Contracts.V1\n{\n using System;\n#pragma warning disable 169\n#pragma warning disable 1591\n "
},
{
"path": "Authorize.NET/Api/Contracts/V1/RequestFactoryWithSpecified.generated.org",
"chars": 63557,
"preview": "namespace AuthorizeNet.Api.Contracts.V1 \n{ \n using System; \n#pragma warning disable 169 \n#pragma warning disable 1591 \n"
},
{
"path": "Authorize.NET/Api/ControllerTemplate.cst",
"chars": 990,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/ARBCancelSubscriptionController.cs",
"chars": 826,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/ARBCreateSubscriptionController.cs",
"chars": 1026,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/ARBGetSubscriptionController.cs",
"chars": 1022,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/ARBGetSubscriptionListController.cs",
"chars": 560,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/ARBGetSubscriptionStatusController.cs",
"chars": 841,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/ARBUpdateSubscriptionController.cs",
"chars": 1017,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/Bases/ApiOperationBase.cs",
"chars": 8115,
"preview": "namespace AuthorizeNet.Api.Controllers.Bases\n{\n using System.Collections.Generic;\n using System.Globalization;\n "
},
{
"path": "Authorize.NET/Api/Controllers/Bases/ErrorResponse.cs",
"chars": 1240,
"preview": "namespace AuthorizeNet.Api.Controllers.Bases\n{\n using System.Text;\n using AuthorizeNet.Api.Contracts.V1;\n\n //@X"
},
{
"path": "Authorize.NET/Api/Controllers/Bases/IApiOperation.cs",
"chars": 732,
"preview": "namespace AuthorizeNet.Api.Controllers.Bases\n{\n using System.Collections.Generic;\n\n /**\n * @author ramittal\n "
},
{
"path": "Authorize.NET/Api/Controllers/authenticateTestController.cs",
"chars": 977,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/createCustomerPaymentProfileController.cs",
"chars": 1059,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/createCustomerProfileController.cs",
"chars": 1017,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/createCustomerProfileFromTransactionController.cs",
"chars": 827,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/createCustomerProfileTransactionController.cs",
"chars": 797,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/createCustomerShippingAddressController.cs",
"chars": 866,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/createFingerPrintController.cs",
"chars": 1020,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/createProfileController.cs",
"chars": 1059,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/createTransactionController.cs",
"chars": 993,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/decryptPaymentDataController.cs",
"chars": 999,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/deleteCustomerPaymentProfileController.cs",
"chars": 861,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/deleteCustomerProfileController.cs",
"chars": 826,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/deleteCustomerShippingAddressController.cs",
"chars": 866,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getAUJobDetailsController.cs",
"chars": 908,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getAUJobSummaryController.cs",
"chars": 908,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getBatchStatisticsController.cs",
"chars": 811,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getCustomerPaymentProfileController.cs",
"chars": 846,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getCustomerPaymentProfileListController.cs",
"chars": 1159,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getCustomerPaymentProfileNonceController.cs",
"chars": 1115,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getCustomerProfileController.cs",
"chars": 811,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getCustomerProfileIdsController.cs",
"chars": 826,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getCustomerShippingAddressController.cs",
"chars": 851,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getHostedPaymentPageController.cs",
"chars": 1015,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getHostedProfilePageController.cs",
"chars": 821,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getMerchantDetailsController.cs",
"chars": 1003,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getSettledBatchListController.cs",
"chars": 1005,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getTransactionDetailsController.cs",
"chars": 826,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getTransactionListController.cs",
"chars": 811,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getTransactionListForCustomerController.cs",
"chars": 1054,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/getUnsettledTransactionListController.cs",
"chars": 856,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/isAliveController.cs",
"chars": 695,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/logoutController.cs",
"chars": 927,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/mobileDeviceLoginController.cs",
"chars": 806,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/mobileDeviceRegistrationController.cs",
"chars": 1035,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/securePaymentContainerController.cs",
"chars": 1023,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/sendCustomerTransactionReceiptController.cs",
"chars": 871,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/transactionController.cs",
"chars": 1061,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/transactionResponseEmvController.cs",
"chars": 1020,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/updateCustomerPaymentProfileController.cs",
"chars": 1059,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/updateCustomerProfileController.cs",
"chars": 1017,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/updateCustomerShippingAddressController.cs",
"chars": 866,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/updateHeldTransactionController.cs",
"chars": 1017,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/updateMerchantDetailsController.cs",
"chars": 1017,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/updateSplitTenderGroupController.cs",
"chars": 831,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/Api/Controllers/validateCustomerPaymentProfileController.cs",
"chars": 871,
"preview": "namespace AuthorizeNet.Api.Controllers\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using Authorize"
},
{
"path": "Authorize.NET/AuthorizeNET.csproj",
"chars": 7275,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" DefaultTargets=\"Build\" xmlns=\"http://schemas.microso"
},
{
"path": "Authorize.NET/Environment.cs",
"chars": 5513,
"preview": "namespace AuthorizeNet \n{\n using System;\n using System.Configuration;\n using System.Linq;\n\n /*=============="
},
{
"path": "Authorize.NET/MarketType.cs",
"chars": 204,
"preview": "namespace AuthorizeNet\n{\n #pragma warning disable 1591\n \n // MarketType is used for Card Present transactions.\n"
},
{
"path": "Authorize.NET/Properties/AssemblyInfo.cs",
"chars": 1403,
"preview": "using System.Reflection;\nusing System.Runtime.CompilerServices;\nusing System.Runtime.InteropServices;\n\n// General Infor"
},
{
"path": "Authorize.NET/TestFriends.cs",
"chars": 83,
"preview": "[assembly: System.Runtime.CompilerServices.InternalsVisibleTo(\"AuthorizeNETtest\")]"
},
{
"path": "Authorize.NET/Util/Constants.cs",
"chars": 1234,
"preview": "namespace AuthorizeNet.Util\n{\n#pragma warning disable 1591\n public static class Constants {\n\t public const string "
},
{
"path": "Authorize.NET/Util/EnumHelper.cs",
"chars": 964,
"preview": "namespace AuthorizeNet.Util\n{\n using System;\n using System.ComponentModel;\n\n#pragma warning disable 1591\n //@d"
},
{
"path": "Authorize.NET/Util/HtmlHelper.cs",
"chars": 990,
"preview": "using System;\r\nusing System.Text;\r\n\r\nnamespace AuthorizeNet.Util\r\n{\r\n //@deprecated since version 1.9.8 \r\n //@de"
},
{
"path": "Authorize.NET/Util/HttpUtility.cs",
"chars": 7649,
"preview": "namespace AuthorizeNet.Util\n{\n using System;\n using System.IO;\n using System.Net;\n using System.Text;\n us"
},
{
"path": "Authorize.NET/Util/LogHelper.cs",
"chars": 3184,
"preview": "namespace AuthorizeNet.Util\n{\n using System;\n using System.Diagnostics;\n using System.Globalization;\n\n /// <"
},
{
"path": "Authorize.NET/Util/SensitiveDataConfigType.cs",
"chars": 1731,
"preview": "namespace AuthorizeNet.Util\n{\n public class SensitiveTag\n {\n public string tagName { get; set; }\n p"
},
{
"path": "Authorize.NET/Util/SensitiveDataConsoleLogger.cs",
"chars": 341,
"preview": "namespace AuthorizeNet.Util\n{\n using System;\n\n public class SensitiveDataConsoleLogger : SensitiveDataTextLogger\n"
},
{
"path": "Authorize.NET/Util/SensitiveDataTextLogger.cs",
"chars": 3011,
"preview": "namespace AuthorizeNet.Util\n{\n using System;\n using System.Diagnostics;\n using System.Text.RegularExpressions;"
},
{
"path": "Authorize.NET/Util/StringUtils.cs",
"chars": 1387,
"preview": "namespace AuthorizeNet.Util\n{\n /// <summary>\n /// \n /// </summary>\n public class StringUtils {\n\n/*\n\t priv"
},
{
"path": "Authorize.NET/Util/XmlUtility.cs",
"chars": 2134,
"preview": "namespace AuthorizeNet.Util\n{\n using System;\n using System.IO;\n using System.Xml.Serialization;\n\n#pragma warnin"
},
{
"path": "Authorize.NET/Utility/AnetApiSchema.generated.cs",
"chars": 204791,
"preview": "//------------------------------------------------------------------------------\n// <auto-generated>\n// This code w"
},
{
"path": "Authorize.NET/Utility/AnetRandom.cs",
"chars": 2025,
"preview": "using System;\nusing System.Security.Cryptography;\n\nnamespace AuthorizeNet.Utility\n{\n public class AnetRandom\n {\n "
},
{
"path": "Authorize.NET/Utility/ApiFields.cs",
"chars": 9466,
"preview": "using System;\nusing System.Collections.Generic;\n\nnamespace AuthorizeNet\n{\n\t\n\t/// <summary>\n\t/// These are field names an"
},
{
"path": "Authorize.NET/Utility/CryptoRandom.cs",
"chars": 2003,
"preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Security.Cryptograph"
},
{
"path": "AuthorizeNET.sln",
"chars": 2013,
"preview": "\r\nMicrosoft Visual Studio Solution File, Format Version 12.00\r\n# Visual Studio Version 17\r\nVisualStudioVersion = 17.10."
},
{
"path": "AuthorizeNET.vsmdi",
"chars": 497,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<TestLists xmlns=\"http://microsoft.com/schemas/VisualStudio/TeamTest/2010\">\r\n "
},
{
"path": "AuthorizeNETtest/Api/ControllerTemplateTest.cst",
"chars": 2441,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/ARBCancelSubscriptionControllerTest.cs",
"chars": 2358,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/ARBCreateSubscriptionControllerTest.cs",
"chars": 2575,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/ARBGetSubscriptionControllerTest.cs",
"chars": 3895,
"preview": "using AuthorizeNet.Utility;\n\nnamespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collec"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/ARBGetSubscriptionListControllerTest.cs",
"chars": 3431,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/ARBGetSubscriptionStatusControllerTest.cs",
"chars": 2546,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/ARBUpdateSubscriptionControllerTest.cs",
"chars": 2300,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/authenticateTestControllerTest.cs",
"chars": 2388,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/createCustomerPaymentProfileControllerTest.cs",
"chars": 2685,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/createCustomerProfileControllerTest.cs",
"chars": 2737,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/createCustomerProfileFromTransactionControllerTest.cs",
"chars": 2821,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/createCustomerProfileTransactionControllerTest.cs",
"chars": 2987,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/createCustomerShippingAddressControllerTest.cs",
"chars": 2609,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/createFingerPrintControllerTest.cs",
"chars": 3269,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Syst"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/createProfileControllerTest.cs",
"chars": 2491,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n //using System;\n //using System.Collections.Generic;\n //usin"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/createTransactionControllerTest.cs",
"chars": 2653,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/decryptPaymentDataControllerTest.cs",
"chars": 2546,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/deleteCustomerPaymentProfileControllerTest.cs",
"chars": 2364,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/deleteCustomerProfileControllerTest.cs",
"chars": 2301,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/deleteCustomerShippingAddressControllerTest.cs",
"chars": 2373,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getAUJobDetailsControllerTest.cs",
"chars": 2421,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getAUJobSummaryControllerTest.cs",
"chars": 2421,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getBatchStatisticsControllerTest.cs",
"chars": 2596,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getCustomerPaymentProfileControllerTest.cs",
"chars": 2766,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getCustomerPaymentProfileListControllerTest.cs",
"chars": 4416,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getCustomerProfileControllerTest.cs",
"chars": 2647,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getCustomerProfileIdsControllerTest.cs",
"chars": 2496,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getCustomerShippingAddressControllerTest.cs",
"chars": 2715,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getHostedPaymentPageControllerTest.cs",
"chars": 2486,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getHostedProfilePageControllerTest.cs",
"chars": 2488,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getMerchantDetailsControllerTest.cs",
"chars": 2477,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getSettledBatchListControllerTest.cs",
"chars": 2723,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getTransactionDetailsControllerTest.cs",
"chars": 2673,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getTransactionListControllerTest.cs",
"chars": 2758,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getTransactionListForCustomerControllerTest.cs",
"chars": 2561,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/getUnsettledTransactionListControllerTest.cs",
"chars": 2848,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/isAliveControllerTest.cs",
"chars": 2305,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/logoutControllerTest.cs",
"chars": 2288,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/mobileDeviceLoginControllerTest.cs",
"chars": 2687,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/mobileDeviceRegistrationControllerTest.cs",
"chars": 2331,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/securePaymentContainerControllerTest.cs",
"chars": 2311,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/sendCustomerTransactionReceiptControllerTest.cs",
"chars": 2382,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/transactionControllerTest.cs",
"chars": 2476,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n //using System;\n //using System.Collections.Generic;\n //usin"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/transactionResponseEmvControllerTest.cs",
"chars": 2491,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/updateCustomerPaymentProfileControllerTest.cs",
"chars": 2630,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/updateCustomerProfileControllerTest.cs",
"chars": 2301,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/updateCustomerShippingAddressControllerTest.cs",
"chars": 2373,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/updateHeldTransactionControllerTest.cs",
"chars": 2698,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/updateMerchantDetailsControllerTest.cs",
"chars": 2310,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/updateSplitTenderGroupControllerTest.cs",
"chars": 2310,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/MockTest/validateCustomerPaymentProfileControllerTest.cs",
"chars": 2612,
"preview": "namespace AuthorizeNet.Api.Controllers.MockTest\n{\n using System;\n using System.Collections.Generic;\n using Auth"
},
{
"path": "AuthorizeNETtest/Api/Controllers/SampleTest/ArbSubscriptionSampleTest.cs",
"chars": 6730,
"preview": "namespace AuthorizeNet.Api.Controllers.SampleTest\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using"
},
{
"path": "AuthorizeNETtest/Api/Controllers/SampleTest/CreateCustomerProfileFromTransactionSampleTest.cs",
"chars": 8344,
"preview": "namespace AuthorizeNet.Api.Controllers.SampleTest\n{\n using System;\n using System.Globalization;\n using Authori"
},
{
"path": "AuthorizeNETtest/Api/Controllers/SampleTest/CreateTransactionSampleTest.cs",
"chars": 29844,
"preview": "using AuthorizeNet.Utility;\n\nnamespace AuthorizeNet.Api.Controllers.SampleTest\n{\n using System;\n using AuthorizeN"
},
{
"path": "AuthorizeNETtest/Api/Controllers/SampleTest/CustomerProfileSampleTest.cs",
"chars": 4301,
"preview": "namespace AuthorizeNETtest.Api.Controllers.SampleTest\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n "
},
{
"path": "AuthorizeNETtest/Api/Controllers/SampleTest/ErrorMessagesSampleTest.cs",
"chars": 3610,
"preview": "using AuthorizeNet.Utility;\n\nnamespace AuthorizeNet.Api.Controllers.SampleTest\n{\n using System;\n using AuthorizeN"
},
{
"path": "AuthorizeNETtest/Api/Controllers/SampleTest/eCheckTransactionSampleTest.cs",
"chars": 14081,
"preview": "using AuthorizeNet.Utility;\n\nnamespace AuthorizeNet.Api.Controllers.SampleTest\n{\n using System;\n using AuthorizeN"
},
{
"path": "AuthorizeNETtest/Api/Controllers/Test/APIInvalidCredentials.cs",
"chars": 3186,
"preview": "namespace AuthorizeNet.Api.Controllers.Test\r\n{\r\n using System;\r\n using System.Collections.Generic;\r\n using NUn"
},
{
"path": "AuthorizeNETtest/Api/Controllers/Test/AllGeneratedEnumTest.cs",
"chars": 13761,
"preview": "namespace AuthorizeNet.Api.Controllers.Test\n{\n using System;\n using AuthorizeNet.Api.Contracts.V1;\n using NUnit"
},
{
"path": "AuthorizeNETtest/Api/Controllers/Test/ApiCoreTestBase.cs",
"chars": 26826,
"preview": "using AuthorizeNet.Utility;\n\nnamespace AuthorizeNet.Api.Controllers.Test\n{\n using System;\n using System.Collection"
},
{
"path": "AuthorizeNETtest/Api/Controllers/Test/ArbSubscriptionTest.cs",
"chars": 19675,
"preview": "using AuthorizeNet.Utility;\n\nnamespace AuthorizeNet.Api.Controllers.Test\n{\n using System;\n using AuthorizeNet.Api."
},
{
"path": "AuthorizeNETtest/Api/Controllers/Test/CreateTransactionTest.cs",
"chars": 22958,
"preview": "using System.Diagnostics;\n\nnamespace AuthorizeNet.Api.Controllers.Test\n{\n using System;\n using NUnit.Framework;\n "
},
{
"path": "AuthorizeNETtest/App.config",
"chars": 366,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<configuration>\n <appSettings>\n <add key=\"api.login.id\" value=\"API_LOGI"
},
{
"path": "AuthorizeNETtest/AuthorizeNETtest.csproj",
"chars": 9939,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" DefaultTargets=\"Build\" xmlns=\"http://schemas.microso"
},
{
"path": "AuthorizeNETtest/BaseTest.cs",
"chars": 2314,
"preview": "using NUnit.Framework;\nusing System;\nusing System.Configuration;\nusing AuthorizeNet.Utility;\n\nnamespace AuthorizeNETtes"
},
{
"path": "AuthorizeNETtest/NMock3/NMockTest.cs",
"chars": 2586,
"preview": "/*\n * This sample test class was added when NMock3 was added\n * through NuGet. It demonstrates how to mock properties,\n"
},
{
"path": "AuthorizeNETtest/Properties/AssemblyInfo.cs",
"chars": 1382,
"preview": "using System.Reflection;\nusing System.Runtime.CompilerServices;\nusing System.Runtime.InteropServices;\n\n// General Infor"
},
{
"path": "AuthorizeNETtest/UnitTestData.cs",
"chars": 1610,
"preview": "namespace AuthorizeNet.Test\n{\n using System;\n using System.Configuration;\n using System.Linq;\n using Authori"
},
{
"path": "AuthorizeNETtest/WebRequestLocal.cs",
"chars": 4792,
"preview": "using System;\nusing System.IO;\nusing System.Net;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Runt"
},
{
"path": "AuthorizeNETtest/packages.config",
"chars": 206,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<packages>\n <package id=\"NMock3\" version=\"3.5.44\" targetFramework=\"net40\" />\n "
},
{
"path": "AuthorizeNet.nuspec",
"chars": 1159,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<package xmlns=\"http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd\">\n <"
},
{
"path": "CONTRIBUTING.md",
"chars": 1509,
"preview": "+ Thanks for contributing to the Authorize.Net Dotnet SDK.\n\n+ Before you submit a pull request, we ask that you consider"
},
{
"path": "LICENSE.txt",
"chars": 17416,
"preview": "SDK LICENSE AGREEMENT\nThis Software Development Kit (“SDK”) License Agreement (“Agreement”) is between you (both the ind"
},
{
"path": "LocalTestRun.testrunconfig",
"chars": 294,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<TestSettings name=\"Local Test Run\" id=\"b519da70-f2b9-42e9-8322-f70b4aedb1c0\" xm"
},
{
"path": "MIGRATING.md",
"chars": 6191,
"preview": "# Migrating from Legacy Authorize.Net Classes\n\nAuthorize.Net no longer supports several legacy classes, including AIM, A"
},
{
"path": "NUnit-2.6.3/license.txt",
"chars": 1110,
"preview": "Copyright 2002-2013 Charlie Poole\nCopyright 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov\nCopyright "
},
{
"path": "README.md",
"chars": 9711,
"preview": "# Authorize.Net .NET SDK\n\n[))\n {\n var aValue = anEnum."
},
{
"path": "scripts/generateControllersFromTemplate.cmd",
"chars": 3542,
"preview": "@ECHO OFF\n\nCALL \"%~dp0\\validateCygwinBinaries.cmd\"\nIF \"1\"==\"%ERRORLEVEL%\" (\n @ECHO Invalid or incomplete Cygwin insta"
},
{
"path": "scripts/generateObjectsFromXsd.cmd",
"chars": 3242,
"preview": "@ECHO OFF\n\nCALL \"%~dp0\\validateCygwinBinaries.cmd\"\nIF \"1\"==\"%ERRORLEVEL%\" (\n @ECHO Invalid or incomplete Cygwin insta"
},
{
"path": "scripts/generateRequestFactorySpecified.cmd",
"chars": 11245,
"preview": "@rem Creating RequestFactoryWithSpecified file which handles the elements having minoccurs=0 in XSD\n@rem It generates sp"
},
{
"path": "scripts/generateTestControllersFromTemplate.cmd",
"chars": 3681,
"preview": "@ECHO OFF\n\nCALL \"%~dp0\\validateCygwinBinaries.cmd\"\nIF \"1\"==\"%ERRORLEVEL%\" (\n @ECHO Invalid or incomplete Cygwin insta"
},
{
"path": "scripts/generateTestForEnums.cmd",
"chars": 1260,
"preview": "@ECHO OFF\n\nCALL \"%~dp0\\validateCygwinBinaries.cmd\"\nIF \"1\"==\"%ERRORLEVEL%\" (\n @ECHO Invalid or incomplete Cygwin insta"
},
{
"path": "scripts/getXsdWsdl.cmd",
"chars": 2155,
"preview": "@ECHO OFF\nCALL \"%~dp0\\validateCygwinBinaries.cmd\"\nIF \"1\"==\"%ERRORLEVEL%\" (\n @ECHO Invalid or incomplete Cygwin instal"
},
{
"path": "scripts/masterUpdate.cmd",
"chars": 1023,
"preview": "@ECHO OFF\n\nCALL \"%~dp0\\validateCygwinBinaries.cmd\"\nIF \"1\"==\"%ERRORLEVEL%\" (\n @ECHO Invalid or incomplete Cygwin insta"
},
{
"path": "scripts/prepareBinariesForVeracodeScan.cmd",
"chars": 897,
"preview": "@ECHO OFF\n@ECHO Script to prepare dlls for VeraCode scan\n\nIF NOT EXIST \"Authorize.NET\\bin\\USELOCAL\\AuthorizeNet.dll\" (\n "
},
{
"path": "scripts/validateCygwinBinaries.cmd",
"chars": 654,
"preview": "@ECHO OFF\n\n@ECHO Validating Cygwin installation and its required components\n\nIF \"\"==\"%CYGWIN_HOME%\" (\n @ECHO CYGWIN_H"
}
]
About this extraction
This page contains the full source code of the AuthorizeNet/sdk-dotnet GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 170 files (1.0 MB), approximately 228.9k tokens, and a symbol index with 1565 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.