forked from firebearstudio/coinpayments-magento2
-
Notifications
You must be signed in to change notification settings - Fork 8
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 #18 from CoinPaymentsNet/Alpha
Alpha
- Loading branch information
Showing
78 changed files
with
1,654 additions
and
2,611 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
|
||
.idea | ||
*.bak |
This file was deleted.
Oops, something went wrong.
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,23 @@ | ||
<?php | ||
|
||
namespace Coinpayments\CoinPayments\Api; | ||
|
||
interface InvoiceInterface | ||
{ | ||
|
||
/** | ||
* @param $clientId | ||
* @param $invoiceParams | ||
* @return mixed | ||
*/ | ||
public function createSimple($clientId, $invoiceParams); | ||
|
||
/** | ||
* @param $clientId | ||
* @param $clientSecret | ||
* @param $invoiceParams | ||
* @return mixed | ||
*/ | ||
public function createMerchant($clientId, $clientSecret, $invoiceParams); | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
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,22 @@ | ||
<?php | ||
|
||
namespace Coinpayments\CoinPayments\Api; | ||
|
||
interface WebHookInterface | ||
{ | ||
|
||
/** | ||
* @param $clientId | ||
* @param $clientSecret | ||
* @param $webHookCallbackUrl | ||
* @return mixed | ||
*/ | ||
public function createWebHook($clientId, $clientSecret, $webHookCallbackUrl); | ||
|
||
/** | ||
* @param $clientId | ||
* @param $clientSecret | ||
* @return mixed | ||
*/ | ||
public function getList($clientId, $clientSecret); | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.