-
Notifications
You must be signed in to change notification settings - Fork 20
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
1 parent
9f05ae8
commit edc943f
Showing
3 changed files
with
51 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,18 @@ | ||
<?php | ||
|
||
namespace Zyberspace\SteamWebApi\Interfaces; | ||
|
||
use Zyberspace\SteamWebApi\AbstractInterface; | ||
class IDOTA2Teams_570 extends AbstractInterface | ||
{ | ||
/** | ||
* /IDOTA2Teams_570/GetTeamInfo/v1/ | ||
* | ||
* @param uint32 $team_id Team ID that you're requesting info about | ||
* @param uint32 $league_id League ID for which you're requesting all regisered teams info | ||
*/ | ||
public function GetTeamInfoV1($team_id = null, $league_id = null) | ||
{ | ||
return $this->_call(__METHOD__, 'GET', array('team_id' => $team_id, 'league_id' => $league_id)); | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
lib/Zyberspace/SteamWebApi/Interfaces/IInventoryService.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 Zyberspace\SteamWebApi\Interfaces; | ||
|
||
use Zyberspace\SteamWebApi\AbstractInterface; | ||
class IInventoryService extends AbstractInterface | ||
{ | ||
/** | ||
* /IInventoryService/GetPriceSheet/v1/ | ||
* | ||
* @param int32 $ecurrency | ||
*/ | ||
public function GetPriceSheetV1($ecurrency) | ||
{ | ||
return $this->_call(__METHOD__, 'GET', array('ecurrency' => $ecurrency)); | ||
} | ||
} |
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 Zyberspace\SteamWebApi\Interfaces; | ||
|
||
use Zyberspace\SteamWebApi\AbstractInterface; | ||
class ISteamBitPay extends AbstractInterface | ||
{ | ||
/** | ||
* /ISteamBitPay/BitPayPaymentNotification/v1/ | ||
* | ||
*/ | ||
public function BitPayPaymentNotificationV1() | ||
{ | ||
return $this->_call(__METHOD__, 'POST', array()); | ||
} | ||
} |