-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release/1.11.1 Added checkout_links field for Smart Transaction model (…
…#31) * Added checkout_links field for Smart Transaction model * Release stuff
- Loading branch information
1 parent
6f85eb2
commit 6b60bd5
Showing
5 changed files
with
45 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
|
||
|
||
namespace SecucardConnect\Product\Smart\Model; | ||
|
||
|
||
/** | ||
* Class CheckoutLinks | ||
* | ||
* @author Anton Lunyov <[email protected]> | ||
*/ | ||
class CheckoutLinks | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $url_checkout; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $url_success; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $url_abort; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $url_error; | ||
} |
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