-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
70 changed files
with
2,065 additions
and
317 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
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,44 @@ | ||
<?php | ||
namespace bunq\Model\Generated\Endpoint; | ||
|
||
use bunq\Model\Core\BunqModel; | ||
|
||
/** | ||
* Used to view bunq.me TabResultResponse objects belonging to a tab. A | ||
* TabResultResponse is an object that holds details on a tab which has been | ||
* paid from the provided monetary account. | ||
* | ||
* @generated | ||
*/ | ||
class BunqMeTabResultResponse extends BunqModel | ||
{ | ||
/** | ||
* Object type. | ||
*/ | ||
const OBJECT_TYPE = 'BunqMeTabResultResponse'; | ||
|
||
/** | ||
* The payment made for the bunq.me tab. | ||
* | ||
* @var Payment | ||
*/ | ||
protected $payment; | ||
|
||
/** | ||
* The payment made for the bunq.me tab. | ||
* | ||
* @return Payment | ||
*/ | ||
public function getPayment() | ||
{ | ||
return $this->payment; | ||
} | ||
|
||
/** | ||
* @param Payment $payment | ||
*/ | ||
public function setPayment($payment) | ||
{ | ||
$this->payment = $payment; | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/Model/Generated/Endpoint/BunqResponseMasterCardAction.php
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,17 @@ | ||
<?php | ||
namespace bunq\Model\Generated\Endpoint; | ||
|
||
use bunq\Http\BunqResponse; | ||
|
||
/** | ||
*/ | ||
class BunqResponseMasterCardAction extends BunqResponse | ||
{ | ||
/** | ||
* @return MasterCardAction | ||
*/ | ||
public function getValue(): MasterCardAction | ||
{ | ||
return parent::getValue(); | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/Model/Generated/Endpoint/BunqResponseMasterCardActionList.php
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,17 @@ | ||
<?php | ||
namespace bunq\Model\Generated\Endpoint; | ||
|
||
use bunq\Http\BunqResponse; | ||
|
||
/** | ||
*/ | ||
class BunqResponseMasterCardActionList extends BunqResponse | ||
{ | ||
/** | ||
* @return MasterCardAction[] | ||
*/ | ||
public function getValue(): array | ||
{ | ||
return parent::getValue(); | ||
} | ||
} |
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
Oops, something went wrong.