-
Notifications
You must be signed in to change notification settings - Fork 93
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 #765 from recurly/v3-v2019-10-10-1684788284
Generated Latest Changes for v2019-10-10 (gateway_attributes on PaymentMethod)
- Loading branch information
Showing
3 changed files
with
90 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php | ||
/** | ||
* This file is automatically created by Recurly's OpenAPI generation process | ||
* and thus any edits you make by hand will be lost. If you wish to make a | ||
* change to this file, please create a Github issue explaining the changes you | ||
* need and we will usher them to the appropriate places. | ||
*/ | ||
namespace Recurly\Resources; | ||
|
||
use Recurly\RecurlyResource; | ||
|
||
// phpcs:disable | ||
class GatewayAttributes extends RecurlyResource | ||
{ | ||
private $_account_reference; | ||
|
||
protected static $array_hints = [ | ||
]; | ||
|
||
|
||
/** | ||
* Getter method for the account_reference attribute. | ||
* Used by Adyen gateways. The Shopper Reference value used when the external token was created. | ||
* | ||
* @return ?string | ||
*/ | ||
public function getAccountReference(): ?string | ||
{ | ||
return $this->_account_reference; | ||
} | ||
|
||
/** | ||
* Setter method for the account_reference attribute. | ||
* | ||
* @param string $account_reference | ||
* | ||
* @return void | ||
*/ | ||
public function setAccountReference(string $account_reference): void | ||
{ | ||
$this->_account_reference = $account_reference; | ||
} | ||
} |
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