1 <?php
2
3 namespace rpf\api\module;
4 use rpf\api\apiModule;
5
6 7 8 9 10
11 class bbEmail_readAccount extends apiModule
12 {
13 protected $rpcMethod = 'bbEmail::readAccount';
14
15 16 17 18 19 20
21 public function setEmail($email)
22 {
23 return $this->addParam('email', (string) $email);
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
81
82 83 84 85 86 87
88 public function addReturnRpc($bool)
89 {
90 return $this->addParam('return_rpc', $bool);
91 }
92
93 94 95 96 97 98
99 public function addReturnUsed($bool)
100 {
101 return $this->addParam('return_used', $bool);
102 }
103
104 105 106 107 108 109
110 public function addReturnSievefilterOverview($bool)
111 {
112 return $this->addParam('return_sievefilter_overview', $bool);
113 }
114
115 116 117 118 119 120
121 public function addReturnStat($bool)
122 {
123 return $this->addParam('return_stat', $bool);
124 }
125
126 127 128 129 130 131
132 public function addReturnArTime($bool)
133 {
134 return $this->addParam('return_ar_time', $bool);
135 }
136 }