-
Notifications
You must be signed in to change notification settings - Fork 402
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #173 from AuthorizeNet/future
Merging Future to master
- Loading branch information
Showing
74 changed files
with
2,425 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php | ||
|
||
namespace net\authorize\api\contract\v1; | ||
|
||
/** | ||
* Class representing AuDeleteType | ||
* | ||
* | ||
* XSD Type: auDeleteType | ||
*/ | ||
class AuDeleteType extends AuDetailsType | ||
{ | ||
|
||
/** | ||
* @property \net\authorize\api\contract\v1\CreditCardMaskedType $creditCard | ||
*/ | ||
private $creditCard = null; | ||
|
||
/** | ||
* Gets as creditCard | ||
* | ||
* @return \net\authorize\api\contract\v1\CreditCardMaskedType | ||
*/ | ||
public function getCreditCard() | ||
{ | ||
return $this->creditCard; | ||
} | ||
|
||
/** | ||
* Sets a new creditCard | ||
* | ||
* @param \net\authorize\api\contract\v1\CreditCardMaskedType $creditCard | ||
* @return self | ||
*/ | ||
public function setCreditCard(\net\authorize\api\contract\v1\CreditCardMaskedType $creditCard) | ||
{ | ||
$this->creditCard = $creditCard; | ||
return $this; | ||
} | ||
|
||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,205 @@ | ||
<?php | ||
|
||
namespace net\authorize\api\contract\v1; | ||
|
||
/** | ||
* Class representing AuDetailsType | ||
* | ||
* | ||
* XSD Type: auDetailsType | ||
*/ | ||
class AuDetailsType | ||
{ | ||
|
||
/** | ||
* @property integer $customerProfileID | ||
*/ | ||
private $customerProfileID = null; | ||
|
||
/** | ||
* @property integer $customerPaymentProfileID | ||
*/ | ||
private $customerPaymentProfileID = null; | ||
|
||
/** | ||
* @property string $firstName | ||
*/ | ||
private $firstName = null; | ||
|
||
/** | ||
* @property string $lastName | ||
*/ | ||
private $lastName = null; | ||
|
||
/** | ||
* @property string $updateTimeUTC | ||
*/ | ||
private $updateTimeUTC = null; | ||
|
||
/** | ||
* @property string $auReasonCode | ||
*/ | ||
private $auReasonCode = null; | ||
|
||
/** | ||
* @property string $reasonDescription | ||
*/ | ||
private $reasonDescription = null; | ||
|
||
/** | ||
* Gets as customerProfileID | ||
* | ||
* @return integer | ||
*/ | ||
public function getCustomerProfileID() | ||
{ | ||
return $this->customerProfileID; | ||
} | ||
|
||
/** | ||
* Sets a new customerProfileID | ||
* | ||
* @param integer $customerProfileID | ||
* @return self | ||
*/ | ||
public function setCustomerProfileID($customerProfileID) | ||
{ | ||
$this->customerProfileID = $customerProfileID; | ||
return $this; | ||
} | ||
|
||
/** | ||
* Gets as customerPaymentProfileID | ||
* | ||
* @return integer | ||
*/ | ||
public function getCustomerPaymentProfileID() | ||
{ | ||
return $this->customerPaymentProfileID; | ||
} | ||
|
||
/** | ||
* Sets a new customerPaymentProfileID | ||
* | ||
* @param integer $customerPaymentProfileID | ||
* @return self | ||
*/ | ||
public function setCustomerPaymentProfileID($customerPaymentProfileID) | ||
{ | ||
$this->customerPaymentProfileID = $customerPaymentProfileID; | ||
return $this; | ||
} | ||
|
||
/** | ||
* Gets as firstName | ||
* | ||
* @return string | ||
*/ | ||
public function getFirstName() | ||
{ | ||
return $this->firstName; | ||
} | ||
|
||
/** | ||
* Sets a new firstName | ||
* | ||
* @param string $firstName | ||
* @return self | ||
*/ | ||
public function setFirstName($firstName) | ||
{ | ||
$this->firstName = $firstName; | ||
return $this; | ||
} | ||
|
||
/** | ||
* Gets as lastName | ||
* | ||
* @return string | ||
*/ | ||
public function getLastName() | ||
{ | ||
return $this->lastName; | ||
} | ||
|
||
/** | ||
* Sets a new lastName | ||
* | ||
* @param string $lastName | ||
* @return self | ||
*/ | ||
public function setLastName($lastName) | ||
{ | ||
$this->lastName = $lastName; | ||
return $this; | ||
} | ||
|
||
/** | ||
* Gets as updateTimeUTC | ||
* | ||
* @return string | ||
*/ | ||
public function getUpdateTimeUTC() | ||
{ | ||
return $this->updateTimeUTC; | ||
} | ||
|
||
/** | ||
* Sets a new updateTimeUTC | ||
* | ||
* @param string $updateTimeUTC | ||
* @return self | ||
*/ | ||
public function setUpdateTimeUTC($updateTimeUTC) | ||
{ | ||
$this->updateTimeUTC = $updateTimeUTC; | ||
return $this; | ||
} | ||
|
||
/** | ||
* Gets as auReasonCode | ||
* | ||
* @return string | ||
*/ | ||
public function getAuReasonCode() | ||
{ | ||
return $this->auReasonCode; | ||
} | ||
|
||
/** | ||
* Sets a new auReasonCode | ||
* | ||
* @param string $auReasonCode | ||
* @return self | ||
*/ | ||
public function setAuReasonCode($auReasonCode) | ||
{ | ||
$this->auReasonCode = $auReasonCode; | ||
return $this; | ||
} | ||
|
||
/** | ||
* Gets as reasonDescription | ||
* | ||
* @return string | ||
*/ | ||
public function getReasonDescription() | ||
{ | ||
return $this->reasonDescription; | ||
} | ||
|
||
/** | ||
* Sets a new reasonDescription | ||
* | ||
* @param string $reasonDescription | ||
* @return self | ||
*/ | ||
public function setReasonDescription($reasonDescription) | ||
{ | ||
$this->reasonDescription = $reasonDescription; | ||
return $this; | ||
} | ||
|
||
|
||
} | ||
|
Oops, something went wrong.