1 <?php
2
3 namespace rpf\api\module;
4 use rpf\api\apiModule;
5
6 7 8 9 10
11 class bbDomain_readSubdomain extends apiModule
12 {
13 protected $rpcMethod = 'bbDomain::readSubdomain';
14
15 16 17 18 19 20
21 public function setName($name)
22 {
23 return $this->addParam('name', (string) $name);
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 setPSeid($pseid)
77 {
78 return $this->addParam('p_seid', (integer) $pseid);
79 }
80 }