1 | <?php |
||
7 | class AcceptOrder extends Model |
||
8 | { |
||
9 | |||
10 | protected $accepted = null; |
||
11 | |||
12 | protected $id = null; |
||
13 | |||
14 | protected $reason = null; |
||
15 | |||
16 | protected $mappingClasses = []; |
||
17 | |||
18 | protected $propNameMap = []; |
||
19 | |||
20 | /** |
||
21 | * Retrieve the accepted property |
||
22 | * |
||
23 | * @return boolean|null |
||
24 | */ |
||
25 | public function getAccepted() |
||
29 | |||
30 | /** |
||
31 | * Set the accepted property |
||
32 | * |
||
33 | * @param boolean $accepted |
||
34 | * @return $this |
||
35 | */ |
||
36 | public function setAccepted($accepted) |
||
41 | |||
42 | /** |
||
43 | * Retrieve the id property |
||
44 | * |
||
45 | * @return string|null |
||
46 | */ |
||
47 | public function getId() |
||
51 | |||
52 | /** |
||
53 | * Set the id property |
||
54 | * |
||
55 | * @param string $id |
||
56 | * @return $this |
||
57 | */ |
||
58 | public function setId($id) |
||
63 | |||
64 | /** |
||
65 | * Retrieve the reason property |
||
66 | * |
||
67 | * @return string|null |
||
68 | */ |
||
69 | public function getReason() |
||
73 | |||
74 | /** |
||
75 | * Set the reason property |
||
76 | * |
||
77 | * @param string $reason |
||
78 | * @return $this |
||
79 | */ |
||
80 | public function setReason($reason) |
||
85 | } |
||
86 |