1 <?php
2
3 namespace rpf\api\module;
4 use rpf\api\apiModule;
5
6 7 8 9 10
11 class bbQuota_readEntry extends apiModule
12 {
13 protected $rpcMethod = 'bbQuota::readEntry';
14
15 16 17 18 19 20
21 public function setPfad($pfad)
22 {
23 return $this->addParam('pfad',(string) $pfad);
24 }
25
26 27 28 29 30 31
32 public function setOeid($oeid)
33 {
34 return $this->addParam('oeid',(integer) $oeid);
35 }
36
37 38 39 40 41 42
43 public function setSeid($seid)
44 {
45 return $this->addParam('seid', (integer) $seid);
46 }
47
48 49 50 51 52 53
54 public function setServiceObjectEntryId($seid)
55 {
56 return $this->setSeid($seid);
57 }
58
59 60 61 62 63 64
65 public function setOrderId($oeid)
66 {
67 return $this->setOeid($oeid);
68 }
69
70 71 72 73 74 75
76 public function setUid($uid)
77 {
78 return $this->addParam('uid', (integer) $uid);
79 }
80
81 82 83 84 85 86
87 public function addReturnSsh($bool = true)
88 {
89 return $this->addParam('return_ssh', (bool) $bool);
90 }
91
92 93 94 95 96 97
98 public function addReturnBase($bool = true)
99 {
100 return $this->addParam('return_base', (bool) $bool);
101 }
102 }