Skip to content

Commit 9347cd3

Browse files
committed
Updated Interfaces
1 parent a37f9d1 commit 9347cd3

File tree

4 files changed

+66
-0
lines changed

4 files changed

+66
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
namespace Zyberspace\SteamWebApi\Interfaces;
4+
5+
use Zyberspace\SteamWebApi\AbstractInterface;
6+
class IDOTA2AutomatedTourney_205790 extends AbstractInterface
7+
{
8+
/**
9+
* /IDOTA2AutomatedTourney_205790/GetActiveTournamentList/v1/
10+
*
11+
*/
12+
public function GetActiveTournamentListV1()
13+
{
14+
return $this->_call(__METHOD__, 'GET', array());
15+
}
16+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
namespace Zyberspace\SteamWebApi\Interfaces;
4+
5+
use Zyberspace\SteamWebApi\AbstractInterface;
6+
class IDOTA2AutomatedTourney_570 extends AbstractInterface
7+
{
8+
/**
9+
* /IDOTA2AutomatedTourney_570/GetActiveTournamentList/v1/
10+
*
11+
*/
12+
public function GetActiveTournamentListV1()
13+
{
14+
return $this->_call(__METHOD__, 'GET', array());
15+
}
16+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
namespace Zyberspace\SteamWebApi\Interfaces;
4+
5+
use Zyberspace\SteamWebApi\AbstractInterface;
6+
class IDOTA2Teams_205790 extends AbstractInterface
7+
{
8+
/**
9+
* /IDOTA2Teams_205790/GetTeamInfo/v1/
10+
*
11+
* @param uint32 $team_id Team ID that you're requesting info about
12+
* @param uint32 $league_id League ID for which you're requesting all regisered teams info
13+
*/
14+
public function GetTeamInfoV1($team_id = null, $league_id = null)
15+
{
16+
return $this->_call(__METHOD__, 'GET', array('team_id' => $team_id, 'league_id' => $league_id));
17+
}
18+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
namespace Zyberspace\SteamWebApi\Interfaces;
4+
5+
use Zyberspace\SteamWebApi\AbstractInterface;
6+
class ITFSystem_440 extends AbstractInterface
7+
{
8+
/**
9+
* /ITFSystem_440/GetWorldStatus/v1/
10+
*
11+
*/
12+
public function GetWorldStatusV1()
13+
{
14+
return $this->_call(__METHOD__, 'GET', array());
15+
}
16+
}

0 commit comments

Comments
 (0)