-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added Card,SourceOfFunds and SourceOfFundsProvided api resources
- Loading branch information
Showing
7 changed files
with
66 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.0.2 | ||
1.0.4 |
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,20 @@ | ||
<?php | ||
|
||
|
||
namespace Mastercard; | ||
|
||
/** | ||
* Class Card | ||
* | ||
* @property string $accountType | ||
* @property MastercardObject $expiry | ||
* @property string $nameOnCard | ||
* @property string $number | ||
* @property string $securityCode | ||
* | ||
* @package Mastercard | ||
*/ | ||
class Card extends ApiResource | ||
{ | ||
const OBJECT_NAME = 'card'; | ||
} |
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,19 @@ | ||
<?php | ||
|
||
|
||
namespace Mastercard; | ||
|
||
/** | ||
* Class sourceOfFunds | ||
* | ||
* @property MastercardObject $provided | ||
* @property string $token | ||
* @property string $tokenRequestorID | ||
* @property string $type | ||
* | ||
* @package Mastercard | ||
*/ | ||
class SourceOfFunds extends ApiResource | ||
{ | ||
const OBJECT_NAME = 'sourceOfFunds'; | ||
} |
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,16 @@ | ||
<?php | ||
|
||
|
||
namespace Mastercard; | ||
|
||
/** | ||
* Class sourceOfFundsProvided | ||
* | ||
* @property Card $card | ||
* | ||
* @package Mastercard | ||
*/ | ||
class SourceOfFundsProvided extends ApiResource | ||
{ | ||
const OBJECT_NAME = 'provided'; | ||
} |
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