PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
authorizenet
/
authorizenet
/
lib
/
net
/
authorize
/
api
/
contract
/
v1
<?php namespace net\authorize\api\contract\v1; /** * Class representing TransactionRequestType * * * XSD Type: transactionRequestType */ class TransactionRequestType implements \JsonSerializable { /** * @property string $transactionType */ private $transactionType = null; /** * @property float $amount */ private $amount = null; /** * @property string $currencyCode */ private $currencyCode = null; /** * @property \net\authorize\api\contract\v1\PaymentType $payment */ private $payment = null; /** * @property \net\authorize\api\contract\v1\CustomerProfilePaymentType $profile */ private $profile = null; /** * @property \net\authorize\api\contract\v1\SolutionType $solution */ private $solution = null; /** * @property string $callId */ private $callId = null; /** * @property string $terminalNumber */ private $terminalNumber = null; /** * @property string $authCode */ private $authCode = null; /** * @property string $refTransId */ private $refTransId = null; /** * @property string $splitTenderId */ private $splitTenderId = null; /** * @property \net\authorize\api\contract\v1\OrderType $order */ private $order = null; /** * @property \net\authorize\api\contract\v1\LineItemType[] $lineItems */ private $lineItems = null; /** * @property \net\authorize\api\contract\v1\ExtendedAmountType $tax */ private $tax = null; /** * @property \net\authorize\api\contract\v1\ExtendedAmountType $duty */ private $duty = null; /** * @property \net\authorize\api\contract\v1\ExtendedAmountType $shipping */ private $shipping = null; /** * @property boolean $taxExempt */ private $taxExempt = null; /** * @property string $poNumber */ private $poNumber = null; /** * @property \net\authorize\api\contract\v1\CustomerDataType $customer */ private $customer = null; /** * @property \net\authorize\api\contract\v1\CustomerAddressType $billTo */ private $billTo = null; /** * @property \net\authorize\api\contract\v1\NameAndAddressType $shipTo */ private $shipTo = null; /** * @property string $customerIP */ private $customerIP = null; /** * @property \net\authorize\api\contract\v1\CcAuthenticationType * $cardholderAuthentication */ private $cardholderAuthentication = null; /** * @property \net\authorize\api\contract\v1\TransRetailInfoType $retail */ private $retail = null; /** * @property string $employeeId */ private $employeeId = null; /** * Allowed values for settingName are: emailCustomer, merchantEmail, * allowPartialAuth, headerEmailReceipt, footerEmailReceipt, recurringBilling, * duplicateWindow, testRequest. * * @property \net\authorize\api\contract\v1\SettingType[] $transactionSettings */ private $transactionSettings = null; /** * @property \net\authorize\api\contract\v1\UserFieldType[] $userFields */ private $userFields = null; /** * @property \net\authorize\api\contract\v1\ExtendedAmountType $surcharge */ private $surcharge = null; /** * @property string $merchantDescriptor */ private $merchantDescriptor = null; /** * @property \net\authorize\api\contract\v1\SubMerchantType $subMerchant */ private $subMerchant = null; /** * @property \net\authorize\api\contract\v1\ExtendedAmountType $tip */ private $tip = null; /** * @property \net\authorize\api\contract\v1\ProcessingOptionsType * $processingOptions */ private $processingOptions = null; /** * @property \net\authorize\api\contract\v1\SubsequentAuthInformationType * $subsequentAuthInformation */ private $subsequentAuthInformation = null; /** * @property \net\authorize\api\contract\v1\OtherTaxType $otherTax */ private $otherTax = null; /** * @property \net\authorize\api\contract\v1\NameAndAddressType $shipFrom */ private $shipFrom = null; /** * @property \net\authorize\api\contract\v1\AuthorizationIndicatorType * $authorizationIndicatorType */ private $authorizationIndicatorType = null; /** * Gets as transactionType * * @return string */ public function getTransactionType() { return $this->transactionType; } /** * Sets a new transactionType * * @param string $transactionType * @return self */ public function setTransactionType($transactionType) { $this->transactionType = $transactionType; return $this; } /** * Gets as amount * * @return float */ public function getAmount() { return $this->amount; } /** * Sets a new amount * * @param float $amount * @return self */ public function setAmount($amount) { $this->amount = $amount; return $this; } /** * Gets as currencyCode * * @return string */ public function getCurrencyCode() { return $this->currencyCode; } /** * Sets a new currencyCode * * @param string $currencyCode * @return self */ public function setCurrencyCode($currencyCode) { $this->currencyCode = $currencyCode; return $this; } /** * Gets as payment * * @return \net\authorize\api\contract\v1\PaymentType */ public function getPayment() { return $this->payment; } /** * Sets a new payment * * @param \net\authorize\api\contract\v1\PaymentType $payment * @return self */ public function setPayment(\net\authorize\api\contract\v1\PaymentType $payment) { $this->payment = $payment; return $this; } /** * Gets as profile * * @return \net\authorize\api\contract\v1\CustomerProfilePaymentType */ public function getProfile() { return $this->profile; } /** * Sets a new profile * * @param \net\authorize\api\contract\v1\CustomerProfilePaymentType $profile * @return self */ public function setProfile(\net\authorize\api\contract\v1\CustomerProfilePaymentType $profile) { $this->profile = $profile; return $this; } /** * Gets as solution * * @return \net\authorize\api\contract\v1\SolutionType */ public function getSolution() { return $this->solution; } /** * Sets a new solution * * @param \net\authorize\api\contract\v1\SolutionType $solution * @return self */ public function setSolution(\net\authorize\api\contract\v1\SolutionType $solution) { $this->solution = $solution; return $this; } /** * Gets as callId * * @return string */ public function getCallId() { return $this->callId; } /** * Sets a new callId * * @param string $callId * @return self */ public function setCallId($callId) { $this->callId = $callId; return $this; } /** * Gets as terminalNumber * * @return string */ public function getTerminalNumber() { return $this->terminalNumber; } /** * Sets a new terminalNumber * * @param string $terminalNumber * @return self */ public function setTerminalNumber($terminalNumber) { $this->terminalNumber = $terminalNumber; return $this; } /** * Gets as authCode * * @return string */ public function getAuthCode() { return $this->authCode; } /** * Sets a new authCode * * @param string $authCode * @return self */ public function setAuthCode($authCode) { $this->authCode = $authCode; return $this; } /** * Gets as refTransId * * @return string */ public function getRefTransId() { return $this->refTransId; } /** * Sets a new refTransId * * @param string $refTransId * @return self */ public function setRefTransId($refTransId) { $this->refTransId = $refTransId; return $this; } /** * Gets as splitTenderId * * @return string */ public function getSplitTenderId() { return $this->splitTenderId; } /** * Sets a new splitTenderId * * @param string $splitTenderId * @return self */ public function setSplitTenderId($splitTenderId) { $this->splitTenderId = $splitTenderId; return $this; } /** * Gets as order * * @return \net\authorize\api\contract\v1\OrderType */ public function getOrder() { return $this->order; } /** * Sets a new order * * @param \net\authorize\api\contract\v1\OrderType $order * @return self */ public function setOrder(\net\authorize\api\contract\v1\OrderType $order) { $this->order = $order; return $this; } /** * Adds as lineItem * * @return self * @param \net\authorize\api\contract\v1\LineItemType $lineItem */ public function addToLineItems(\net\authorize\api\contract\v1\LineItemType $lineItem) { $this->lineItems[] = $lineItem; return $this; } /** * isset lineItems * * @param scalar $index * @return boolean */ public function issetLineItems($index) { return isset($this->lineItems[$index]); } /** * unset lineItems * * @param scalar $index * @return void */ public function unsetLineItems($index) { unset($this->lineItems[$index]); } /** * Gets as lineItems * * @return \net\authorize\api\contract\v1\LineItemType[] */ public function getLineItems() { return $this->lineItems; } /** * Sets a new lineItems * * @param \net\authorize\api\contract\v1\LineItemType[] $lineItems * @return self */ public function setLineItems(array $lineItems) { $this->lineItems = $lineItems; return $this; } /** * Gets as tax * * @return \net\authorize\api\contract\v1\ExtendedAmountType */ public function getTax() { return $this->tax; } /** * Sets a new tax * * @param \net\authorize\api\contract\v1\ExtendedAmountType $tax * @return self */ public function setTax(\net\authorize\api\contract\v1\ExtendedAmountType $tax) { $this->tax = $tax; return $this; } /** * Gets as duty * * @return \net\authorize\api\contract\v1\ExtendedAmountType */ public function getDuty() { return $this->duty; } /** * Sets a new duty * * @param \net\authorize\api\contract\v1\ExtendedAmountType $duty * @return self */ public function setDuty(\net\authorize\api\contract\v1\ExtendedAmountType $duty) { $this->duty = $duty; return $this; } /** * Gets as shipping * * @return \net\authorize\api\contract\v1\ExtendedAmountType */ public function getShipping() { return $this->shipping; } /** * Sets a new shipping * * @param \net\authorize\api\contract\v1\ExtendedAmountType $shipping * @return self */ public function setShipping(\net\authorize\api\contract\v1\ExtendedAmountType $shipping) { $this->shipping = $shipping; return $this; } /** * Gets as taxExempt * * @return boolean */ public function getTaxExempt() { return $this->taxExempt; } /** * Sets a new taxExempt * * @param boolean $taxExempt * @return self */ public function setTaxExempt($taxExempt) { $this->taxExempt = $taxExempt; return $this; } /** * Gets as poNumber * * @return string */ public function getPoNumber() { return $this->poNumber; } /** * Sets a new poNumber * * @param string $poNumber * @return self */ public function setPoNumber($poNumber) { $this->poNumber = $poNumber; return $this; } /** * Gets as customer * * @return \net\authorize\api\contract\v1\CustomerDataType */ public function getCustomer() { return $this->customer; } /** * Sets a new customer * * @param \net\authorize\api\contract\v1\CustomerDataType $customer * @return self */ public function setCustomer(\net\authorize\api\contract\v1\CustomerDataType $customer) { $this->customer = $customer; return $this; } /** * Gets as billTo * * @return \net\authorize\api\contract\v1\CustomerAddressType */ public function getBillTo() { return $this->billTo; } /** * Sets a new billTo * * @param \net\authorize\api\contract\v1\CustomerAddressType $billTo * @return self */ public function setBillTo(\net\authorize\api\contract\v1\CustomerAddressType $billTo) { $this->billTo = $billTo; return $this; } /** * Gets as shipTo * * @return \net\authorize\api\contract\v1\NameAndAddressType */ public function getShipTo() { return $this->shipTo; } /** * Sets a new shipTo * * @param \net\authorize\api\contract\v1\NameAndAddressType $shipTo * @return self */ public function setShipTo(\net\authorize\api\contract\v1\NameAndAddressType $shipTo) { $this->shipTo = $shipTo; return $this; } /** * Gets as customerIP * * @return string */ public function getCustomerIP() { return $this->customerIP; } /** * Sets a new customerIP * * @param string $customerIP * @return self */ public function setCustomerIP($customerIP) { $this->customerIP = $customerIP; return $this; } /** * Gets as cardholderAuthentication * * @return \net\authorize\api\contract\v1\CcAuthenticationType */ public function getCardholderAuthentication() { return $this->cardholderAuthentication; } /** * Sets a new cardholderAuthentication * * @param \net\authorize\api\contract\v1\CcAuthenticationType * $cardholderAuthentication * @return self */ public function setCardholderAuthentication(\net\authorize\api\contract\v1\CcAuthenticationType $cardholderAuthentication) { $this->cardholderAuthentication = $cardholderAuthentication; return $this; } /** * Gets as retail * * @return \net\authorize\api\contract\v1\TransRetailInfoType */ public function getRetail() { return $this->retail; } /** * Sets a new retail * * @param \net\authorize\api\contract\v1\TransRetailInfoType $retail * @return self */ public function setRetail(\net\authorize\api\contract\v1\TransRetailInfoType $retail) { $this->retail = $retail; return $this; } /** * Gets as employeeId * * @return string */ public function getEmployeeId() { return $this->employeeId; } /** * Sets a new employeeId * * @param string $employeeId * @return self */ public function setEmployeeId($employeeId) { $this->employeeId = $employeeId; return $this; } /** * Adds as setting * * Allowed values for settingName are: emailCustomer, merchantEmail, * allowPartialAuth, headerEmailReceipt, footerEmailReceipt, recurringBilling, * duplicateWindow, testRequest. * * @return self * @param \net\authorize\api\contract\v1\SettingType $setting */ public function addToTransactionSettings(\net\authorize\api\contract\v1\SettingType $setting) { $this->transactionSettings[] = $setting; return $this; } /** * isset transactionSettings * * Allowed values for settingName are: emailCustomer, merchantEmail, * allowPartialAuth, headerEmailReceipt, footerEmailReceipt, recurringBilling, * duplicateWindow, testRequest. * * @param scalar $index * @return boolean */ public function issetTransactionSettings($index) { return isset($this->transactionSettings[$index]); } /** * unset transactionSettings * * Allowed values for settingName are: emailCustomer, merchantEmail, * allowPartialAuth, headerEmailReceipt, footerEmailReceipt, recurringBilling, * duplicateWindow, testRequest. * * @param scalar $index * @return void */ public function unsetTransactionSettings($index) { unset($this->transactionSettings[$index]); } /** * Gets as transactionSettings * * Allowed values for settingName are: emailCustomer, merchantEmail, * allowPartialAuth, headerEmailReceipt, footerEmailReceipt, recurringBilling, * duplicateWindow, testRequest. * * @return \net\authorize\api\contract\v1\SettingType[] */ public function getTransactionSettings() { return $this->transactionSettings; } /** * Sets a new transactionSettings * * Allowed values for settingName are: emailCustomer, merchantEmail, * allowPartialAuth, headerEmailReceipt, footerEmailReceipt, recurringBilling, * duplicateWindow, testRequest. * * @param \net\authorize\api\contract\v1\SettingType[] $transactionSettings * @return self */ public function setTransactionSettings(array $transactionSettings) { $this->transactionSettings = $transactionSettings; return $this; } /** * Adds as userField * * @return self * @param \net\authorize\api\contract\v1\UserFieldType $userField */ public function addToUserFields(\net\authorize\api\contract\v1\UserFieldType $userField) { $this->userFields[] = $userField; return $this; } /** * isset userFields * * @param scalar $index * @return boolean */ public function issetUserFields($index) { return isset($this->userFields[$index]); } /** * unset userFields * * @param scalar $index * @return void */ public function unsetUserFields($index) { unset($this->userFields[$index]); } /** * Gets as userFields * * @return \net\authorize\api\contract\v1\UserFieldType[] */ public function getUserFields() { return $this->userFields; } /** * Sets a new userFields * * @param \net\authorize\api\contract\v1\UserFieldType[] $userFields * @return self */ public function setUserFields(array $userFields) { $this->userFields = $userFields; return $this; } /** * Gets as surcharge * * @return \net\authorize\api\contract\v1\ExtendedAmountType */ public function getSurcharge() { return $this->surcharge; } /** * Sets a new surcharge * * @param \net\authorize\api\contract\v1\ExtendedAmountType $surcharge * @return self */ public function setSurcharge(\net\authorize\api\contract\v1\ExtendedAmountType $surcharge) { $this->surcharge = $surcharge; return $this; } /** * Gets as merchantDescriptor * * @return string */ public function getMerchantDescriptor() { return $this->merchantDescriptor; } /** * Sets a new merchantDescriptor * * @param string $merchantDescriptor * @return self */ public function setMerchantDescriptor($merchantDescriptor) { $this->merchantDescriptor = $merchantDescriptor; return $this; } /** * Gets as subMerchant * * @return \net\authorize\api\contract\v1\SubMerchantType */ public function getSubMerchant() { return $this->subMerchant; } /** * Sets a new subMerchant * * @param \net\authorize\api\contract\v1\SubMerchantType $subMerchant * @return self */ public function setSubMerchant(\net\authorize\api\contract\v1\SubMerchantType $subMerchant) { $this->subMerchant = $subMerchant; return $this; } /** * Gets as tip * * @return \net\authorize\api\contract\v1\ExtendedAmountType */ public function getTip() { return $this->tip; } /** * Sets a new tip * * @param \net\authorize\api\contract\v1\ExtendedAmountType $tip * @return self */ public function setTip(\net\authorize\api\contract\v1\ExtendedAmountType $tip) { $this->tip = $tip; return $this; } /** * Gets as processingOptions * * @return \net\authorize\api\contract\v1\ProcessingOptionsType */ public function getProcessingOptions() { return $this->processingOptions; } /** * Sets a new processingOptions * * @param \net\authorize\api\contract\v1\ProcessingOptionsType $processingOptions * @return self */ public function setProcessingOptions(\net\authorize\api\contract\v1\ProcessingOptionsType $processingOptions) { $this->processingOptions = $processingOptions; return $this; } /** * Gets as subsequentAuthInformation * * @return \net\authorize\api\contract\v1\SubsequentAuthInformationType */ public function getSubsequentAuthInformation() { return $this->subsequentAuthInformation; } /** * Sets a new subsequentAuthInformation * * @param \net\authorize\api\contract\v1\SubsequentAuthInformationType * $subsequentAuthInformation * @return self */ public function setSubsequentAuthInformation(\net\authorize\api\contract\v1\SubsequentAuthInformationType $subsequentAuthInformation) { $this->subsequentAuthInformation = $subsequentAuthInformation; return $this; } /** * Gets as otherTax * * @return \net\authorize\api\contract\v1\OtherTaxType */ public function getOtherTax() { return $this->otherTax; } /** * Sets a new otherTax * * @param \net\authorize\api\contract\v1\OtherTaxType $otherTax * @return self */ public function setOtherTax(\net\authorize\api\contract\v1\OtherTaxType $otherTax) { $this->otherTax = $otherTax; return $this; } /** * Gets as shipFrom * * @return \net\authorize\api\contract\v1\NameAndAddressType */ public function getShipFrom() { return $this->shipFrom; } /** * Sets a new shipFrom * * @param \net\authorize\api\contract\v1\NameAndAddressType $shipFrom * @return self */ public function setShipFrom(\net\authorize\api\contract\v1\NameAndAddressType $shipFrom) { $this->shipFrom = $shipFrom; return $this; } /** * Gets as authorizationIndicatorType * * @return \net\authorize\api\contract\v1\AuthorizationIndicatorType */ public function getAuthorizationIndicatorType() { return $this->authorizationIndicatorType; } /** * Sets a new authorizationIndicatorType * * @param \net\authorize\api\contract\v1\AuthorizationIndicatorType * $authorizationIndicatorType * @return self */ public function setAuthorizationIndicatorType(\net\authorize\api\contract\v1\AuthorizationIndicatorType $authorizationIndicatorType) { $this->authorizationIndicatorType = $authorizationIndicatorType; return $this; } // Json Serialize Code public function jsonSerialize(){ $values = array_filter((array)get_object_vars($this), function ($val){ return !is_null($val); }); $mapper = \net\authorize\util\Mapper::Instance(); foreach($values as $key => $value){ $classDetails = $mapper->getClass(get_class() , $key); if (isset($value)){ if ($classDetails->className === 'Date'){ $dateTime = $value->format('Y-m-d'); $values[$key] = $dateTime; } else if ($classDetails->className === 'DateTime'){ $dateTime = $value->format('Y-m-d\TH:i:s\Z'); $values[$key] = $dateTime; } if (is_array($value)){ if (!$classDetails->isInlineArray){ $subKey = $classDetails->arrayEntryname; $subArray = [$subKey => $value]; $values[$key] = $subArray; } } } } return $values; } // Json Set Code public function set($data) { if(is_array($data) || is_object($data)) { $mapper = \net\authorize\util\Mapper::Instance(); foreach($data AS $key => $value) { $classDetails = $mapper->getClass(get_class() , $key); if($classDetails !== NULL ) { if ($classDetails->isArray) { if ($classDetails->isCustomDefined) { foreach($value AS $keyChild => $valueChild) { $type = new $classDetails->className; $type->set($valueChild); $this->{'addTo' . $key}($type); } } else if ($classDetails->className === 'DateTime' || $classDetails->className === 'Date' ) { foreach($value AS $keyChild => $valueChild) { $type = new \DateTime($valueChild); $this->{'addTo' . $key}($type); } } else { foreach($value AS $keyChild => $valueChild) { $this->{'addTo' . $key}($valueChild); } } } else { if ($classDetails->isCustomDefined){ $type = new $classDetails->className; $type->set($value); $this->{'set' . $key}($type); } else if ($classDetails->className === 'DateTime' || $classDetails->className === 'Date' ) { $type = new \DateTime($value); $this->{'set' . $key}($type); } else { $this->{'set' . $key}($value); } } } } } } }
[+]
..
[-] CreditCardSimpleType.php
[edit]
[-] SubscriptionCustomerProfileType.php
[edit]
[-] OrderExType.php
[edit]
[-] UserFieldType.php
[edit]
[-] DeleteCustomerPaymentProfileRequest.php
[edit]
[-] GetHostedPaymentPageRequest.php
[edit]
[-] DeleteCustomerShippingAddressRequest.php
[edit]
[-] CreditCardType.php
[edit]
[-] PaymentDetailsType.php
[edit]
[-] ProfileTransAuthOnlyType.php
[edit]
[-] SubMerchantType.php
[edit]
[-] ARBGetSubscriptionListResponse.php
[edit]
[-] DecryptPaymentDataResponse.php
[edit]
[-] ARBGetSubscriptionStatusRequest.php
[edit]
[-] KeyValueType.php
[edit]
[-] GetSettledBatchListResponse.php
[edit]
[-] GetMerchantDetailsResponse.php
[edit]
[-] MobileDeviceRegistrationRequest.php
[edit]
[-] IsAliveRequest.php
[edit]
[-] FraudInformationType.php
[edit]
[-] DeleteCustomerProfileRequest.php
[edit]
[-] ArbTransactionType.php
[edit]
[-] CustomerProfileSummaryType.php
[edit]
[-] ARBUpdateSubscriptionResponse.php
[edit]
[-] SubscriptionPaymentType.php
[edit]
[-] ARBSubscriptionType.php
[edit]
[-] GetAUJobSummaryRequest.php
[edit]
[-] GetAUJobDetailsResponse.php
[edit]
[-] UpdateSplitTenderGroupRequest.php
[edit]
[-] OrderType.php
[edit]
[-] GetCustomerShippingAddressRequest.php
[edit]
[-] GetTransactionDetailsResponse.php
[edit]
[-] BankAccountType.php
[edit]
[-] BatchStatisticType.php
[edit]
[-] ListOfAUDetailsType.php
[edit]
[-] GetTransactionListRequest.php
[edit]
[-] CustomerProfileType.php
[edit]
[+]
KeyManagementSchemeType
[-] CustomerProfilePaymentType.php
[edit]
[-] ErrorResponse.php
[edit]
[-] UpdateMerchantDetailsRequest.php
[edit]
[-] GetCustomerPaymentProfileResponse.php
[edit]
[-] UpdateMerchantDetailsResponse.php
[edit]
[-] BatchDetailsType.php
[edit]
[-] ARBCreateSubscriptionRequest.php
[edit]
[-] PaymentScheduleType.php
[edit]
[-] CustomerPaymentProfileMaskedType.php
[edit]
[-] UpdateHeldTransactionRequest.php
[edit]
[+]
TransactionRequestType
[-] TransRetailInfoType.php
[edit]
[-] CreateCustomerProfileTransactionResponse.php
[edit]
[-] PermissionType.php
[edit]
[-] PayPalType.php
[edit]
[-] GetHostedPaymentPageResponse.php
[edit]
[-] MessagesType.php
[edit]
[-] GetTransactionDetailsRequest.php
[edit]
[-] OpaqueDataType.php
[edit]
[+]
TransactionDetailsType
[-] UpdateSplitTenderGroupResponse.php
[edit]
[-] GetBatchStatisticsResponse.php
[edit]
[-] AuthorizationIndicatorType.php
[edit]
[-] GetCustomerProfileResponse.php
[edit]
[-] GetBatchStatisticsRequest.php
[edit]
[-] ARBGetSubscriptionListSortingType.php
[edit]
[-] GetCustomerShippingAddressResponse.php
[edit]
[-] SettingType.php
[edit]
[-] EncryptedTrackDataType.php
[edit]
[-] GetTransactionListForCustomerRequest.php
[edit]
[-] PaymentProfileType.php
[edit]
[-] CreateCustomerPaymentProfileResponse.php
[edit]
[-] GetUnsettledTransactionListResponse.php
[edit]
[-] ARBSubscriptionMaskedType.php
[edit]
[-] ExtendedAmountType.php
[edit]
[-] ProfileTransRefundType.php
[edit]
[-] UpdateCustomerShippingAddressRequest.php
[edit]
[-] ArrayOfSettingType.php
[edit]
[-] MobileDeviceLoginResponse.php
[edit]
[-] CustomerProfileIdType.php
[edit]
[-] ProfileTransVoidType.php
[edit]
[-] UpdateCustomerShippingAddressResponse.php
[edit]
[-] CreateCustomerProfileResponse.php
[edit]
[-] CustomerAddressExType.php
[edit]
[-] MobileDeviceLoginRequest.php
[edit]
[-] ANetApiResponseType.php
[edit]
[-] GetMerchantDetailsRequest.php
[edit]
[-] TransactionResponseType.php
[edit]
[-] CustomerDataType.php
[edit]
[+]
PaymentScheduleType
[-] ProfileTransPriorAuthCaptureType.php
[edit]
[-] CcAuthenticationType.php
[edit]
[-] LogoutRequest.php
[edit]
[-] CardArtType.php
[edit]
[-] AuDetailsType.php
[edit]
[-] TransactionListSortingType.php
[edit]
[-] MerchantAuthenticationType.php
[edit]
[-] CreditCardTrackType.php
[edit]
[-] TransactionSummaryType.php
[edit]
[-] GetCustomerPaymentProfileListRequest.php
[edit]
[-] MerchantContactType.php
[edit]
[-] CustomerAddressType.php
[edit]
[-] PaymentEmvType.php
[edit]
[-] UpdateCustomerPaymentProfileRequest.php
[edit]
[-] DecryptPaymentDataRequest.php
[edit]
[-] SendCustomerTransactionReceiptResponse.php
[edit]
[-] ARBGetSubscriptionListRequest.php
[edit]
[+]
TransactionResponseType
[-] CustomerProfileMaskedType.php
[edit]
[-] ProfileTransAmountType.php
[edit]
[-] SolutionType.php
[edit]
[-] DriversLicenseMaskedType.php
[edit]
[-] ARBGetSubscriptionStatusResponse.php
[edit]
[-] CreateCustomerShippingAddressRequest.php
[edit]
[-] ProfileTransOrderType.php
[edit]
[-] GetAUJobDetailsRequest.php
[edit]
[-] SendCustomerTransactionReceiptRequest.php
[edit]
[-] CreateCustomerProfileRequest.php
[edit]
[-] CustomerPaymentProfileSortingType.php
[edit]
[-] CreditCardMaskedType.php
[edit]
[-] NameAndAddressType.php
[edit]
[-] CreateCustomerPaymentProfileRequest.php
[edit]
[-] CreateTransactionRequest.php
[edit]
[-] PaymentMaskedType.php
[edit]
[-] SecurePaymentContainerErrorType.php
[edit]
[-] UpdateCustomerPaymentProfileResponse.php
[edit]
[-] ARBCancelSubscriptionRequest.php
[edit]
[-] ProfileTransactionType.php
[edit]
[-] GetCustomerProfileIdsResponse.php
[edit]
[-] FingerPrintType.php
[edit]
[-] ImpersonationAuthenticationType.php
[edit]
[-] ProfileTransCaptureOnlyType.php
[edit]
[-] SecurePaymentContainerResponse.php
[edit]
[-] ANetApiRequestType.php
[edit]
[-] TokenMaskedType.php
[edit]
[-] EmailSettingsType.php
[edit]
[-] GetTransactionListResponse.php
[edit]
[-] UpdateCustomerProfileRequest.php
[edit]
[-] GetHostedProfilePageRequest.php
[edit]
[-] GetCustomerPaymentProfileListResponse.php
[edit]
[-] EmvTagType.php
[edit]
[-] CustomerProfileInfoExType.php
[edit]
[-] CustomerType.php
[edit]
[-] CreateTransactionResponse.php
[edit]
[-] CustomerProfileBaseType.php
[edit]
[-] GetAUJobSummaryResponse.php
[edit]
[-] ValidateCustomerPaymentProfileRequest.php
[edit]
[-] CustomerPaymentProfileListItemType.php
[edit]
[-] AuDeleteType.php
[edit]
[-] GetHostedProfilePageResponse.php
[edit]
[-] WebCheckOutDataTypeTokenType.php
[edit]
[-] AuthenticateTestRequest.php
[edit]
[-] PaymentSimpleType.php
[edit]
[-] CreateCustomerProfileTransactionRequest.php
[edit]
[-] OtherTaxType.php
[edit]
[-] ARBGetSubscriptionResponse.php
[edit]
[-] AuthenticateTestResponse.php
[edit]
[-] BankAccountMaskedType.php
[edit]
[-] CreateCustomerProfileFromTransactionRequest.php
[edit]
[-] MobileDeviceType.php
[edit]
[-] KeyBlockType.php
[edit]
[-] AuResponseType.php
[edit]
[-] SecurePaymentContainerRequest.php
[edit]
[-] WebCheckOutDataType.php
[edit]
[-] TransactionDetailsType.php
[edit]
[-] KeyManagementSchemeType.php
[edit]
[-] CustomerPaymentProfileBaseType.php
[edit]
[-] GetUnsettledTransactionListRequest.php
[edit]
[-] ProcessingOptionsType.php
[edit]
[-] FDSFilterType.php
[edit]
[-] ValidateCustomerPaymentProfileResponse.php
[edit]
[-] CustomerProfileExType.php
[edit]
[-] UpdateHeldTransactionResponse.php
[edit]
[-] UpdateCustomerProfileResponse.php
[edit]
[-] DeleteCustomerProfileResponse.php
[edit]
[-] DriversLicenseType.php
[edit]
[+]
MessagesType
[-] LogoutResponse.php
[edit]
[-] HeldTransactionRequestType.php
[edit]
[-] GetCustomerProfileRequest.php
[edit]
[-] ProcessorType.php
[edit]
[-] ARBUpdateSubscriptionRequest.php
[edit]
[-] LineItemType.php
[edit]
[-] GetCustomerPaymentProfileRequest.php
[edit]
[-] ARBCancelSubscriptionResponse.php
[edit]
[-] CustomerPaymentProfileExType.php
[edit]
[-] GetSettledBatchListRequest.php
[edit]
[-] ContactDetailType.php
[edit]
[-] CreateProfileResponseType.php
[edit]
[-] PaymentType.php
[edit]
[-] ARBCreateSubscriptionResponse.php
[edit]
[-] EnumCollection.php
[edit]
[-] SubsequentAuthInformationType.php
[edit]
[-] ARBGetSubscriptionRequest.php
[edit]
[-] IsAliveResponse.php
[edit]
[-] SubscriptionDetailType.php
[edit]
[-] GetCustomerProfileIdsRequest.php
[edit]
[-] CreateCustomerShippingAddressResponse.php
[edit]
[-] AuUpdateType.php
[edit]
[-] ProfileTransAuthCaptureType.php
[edit]
[-] DeleteCustomerShippingAddressResponse.php
[edit]
[-] ReturnedItemType.php
[edit]
[-] PagingType.php
[edit]
[-] CustomerPaymentProfileType.php
[edit]
[-] DeleteCustomerPaymentProfileResponse.php
[edit]
[-] TransactionRequestType.php
[edit]
[-] MobileDeviceRegistrationResponse.php
[edit]