Skip to content

Commit 796296f

Browse files
committed
Interface update
1 parent e303576 commit 796296f

File tree

1 file changed

+88
-0
lines changed

1 file changed

+88
-0
lines changed
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
<?php
2+
3+
namespace Zyberspace\SteamWebApi\Interfaces;
4+
5+
use Zyberspace\SteamWebApi\AbstractInterface;
6+
class ICSGOTournaments_730 extends AbstractInterface
7+
{
8+
/**
9+
* /ICSGOTournaments_730/GetTournamentFantasyLineup/v1/
10+
*
11+
* @param uint32 $event The event ID
12+
* @param uint64 $steamid The SteamID of the user inventory
13+
* @param string $steamidkey Authentication obtained from the SteamID
14+
*/
15+
public function GetTournamentFantasyLineupV1($event, $steamid, $steamidkey)
16+
{
17+
return $this->_call(__METHOD__, 'GET', array('event' => $event, 'steamid' => $steamid, 'steamidkey' => $steamidkey));
18+
}
19+
/**
20+
* /ICSGOTournaments_730/GetTournamentItems/v1/
21+
*
22+
* @param uint32 $event The event ID
23+
* @param uint64 $steamid The SteamID of the user inventory
24+
* @param string $steamidkey Authentication obtained from the SteamID
25+
*/
26+
public function GetTournamentItemsV1($event, $steamid, $steamidkey)
27+
{
28+
return $this->_call(__METHOD__, 'GET', array('event' => $event, 'steamid' => $steamid, 'steamidkey' => $steamidkey));
29+
}
30+
/**
31+
* /ICSGOTournaments_730/GetTournamentLayout/v1/
32+
*
33+
* @param uint32 $event The event ID
34+
*/
35+
public function GetTournamentLayoutV1($event)
36+
{
37+
return $this->_call(__METHOD__, 'GET', array('event' => $event));
38+
}
39+
/**
40+
* /ICSGOTournaments_730/GetTournamentPredictions/v1/
41+
*
42+
* @param uint32 $event The event ID
43+
* @param uint64 $steamid The SteamID of the user inventory
44+
* @param string $steamidkey Authentication obtained from the SteamID
45+
*/
46+
public function GetTournamentPredictionsV1($event, $steamid, $steamidkey)
47+
{
48+
return $this->_call(__METHOD__, 'GET', array('event' => $event, 'steamid' => $steamid, 'steamidkey' => $steamidkey));
49+
}
50+
/**
51+
* /ICSGOTournaments_730/UploadTournamentFantasyLineup/v1/
52+
*
53+
* @param uint32 $event The event ID
54+
* @param uint64 $steamid The SteamID of the user inventory
55+
* @param string $steamidkey Authentication obtained from the SteamID
56+
* @param uint32 $sectionid Event section id
57+
* @param uint32 $pickid0 PickID to select for the slot
58+
* @param uint64 $itemid0 ItemID to lock in for the pick
59+
* @param uint32 $pickid1 PickID to select for the slot
60+
* @param uint64 $itemid1 ItemID to lock in for the pick
61+
* @param uint32 $pickid2 PickID to select for the slot
62+
* @param uint64 $itemid2 ItemID to lock in for the pick
63+
* @param uint32 $pickid3 PickID to select for the slot
64+
* @param uint64 $itemid3 ItemID to lock in for the pick
65+
* @param uint32 $pickid4 PickID to select for the slot
66+
* @param uint64 $itemid4 ItemID to lock in for the pick
67+
*/
68+
public function UploadTournamentFantasyLineupV1($event, $steamid, $steamidkey, $sectionid, $pickid0, $itemid0, $pickid1, $itemid1, $pickid2, $itemid2, $pickid3, $itemid3, $pickid4, $itemid4)
69+
{
70+
return $this->_call(__METHOD__, 'POST', array('event' => $event, 'steamid' => $steamid, 'steamidkey' => $steamidkey, 'sectionid' => $sectionid, 'pickid0' => $pickid0, 'itemid0' => $itemid0, 'pickid1' => $pickid1, 'itemid1' => $itemid1, 'pickid2' => $pickid2, 'itemid2' => $itemid2, 'pickid3' => $pickid3, 'itemid3' => $itemid3, 'pickid4' => $pickid4, 'itemid4' => $itemid4));
71+
}
72+
/**
73+
* /ICSGOTournaments_730/UploadTournamentPredictions/v1/
74+
*
75+
* @param uint32 $event The event ID
76+
* @param uint64 $steamid The SteamID of the user inventory
77+
* @param string $steamidkey Authentication obtained from the SteamID
78+
* @param uint32 $sectionid Event section id
79+
* @param uint32 $groupid Event group id
80+
* @param uint32 $index Index in group
81+
* @param uint32 $pickid Pick ID to select
82+
* @param uint64 $itemid ItemID to lock in for the pick
83+
*/
84+
public function UploadTournamentPredictionsV1($event, $steamid, $steamidkey, $sectionid, $groupid, $index, $pickid, $itemid)
85+
{
86+
return $this->_call(__METHOD__, 'POST', array('event' => $event, 'steamid' => $steamid, 'steamidkey' => $steamidkey, 'sectionid' => $sectionid, 'groupid' => $groupid, 'index' => $index, 'pickid' => $pickid, 'itemid' => $itemid));
87+
}
88+
}

0 commit comments

Comments
 (0)