1 <?php
2
3 namespace rpf\api\module;
4 use rpf\api\apiModule;
5
6 7 8 9 10
11 class bbOrder_readAccountAddress extends apiModule
12 {
13 protected $rpcMethod = 'bbOrder::readAccountAdress';
14
15 16 17 18 19 20
21 public function setAeid($aeid)
22 {
23 return $this->addParam('aeid', $aeid);
24 }
25
26 27 28 29 30 31
32 public function addReturnCustomer($bool)
33 {
34 return $this->addParam('return_customer', $bool);
35 }
36
37 38 39 40 41 42
43 public function addReturnPhoneEncodet($bool)
44 {
45 return $this->addParam('return_phone_encodet', $bool);
46 }
47 }