Skip to content

Commit

Permalink
Updated Interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
zyberspace committed Feb 25, 2016
1 parent 9f05ae8 commit edc943f
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
18 changes: 18 additions & 0 deletions lib/Zyberspace/SteamWebApi/Interfaces/IDOTA2Teams_570.php
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 lib/Zyberspace/SteamWebApi/Interfaces/IInventoryService.php
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));
}
}
16 changes: 16 additions & 0 deletions lib/Zyberspace/SteamWebApi/Interfaces/ISteamBitPay.php
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());
}
}

0 comments on commit edc943f

Please sign in to comment.