1 | <?php |
||
16 | class CustomerSavedSearch extends Model |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $name; |
||
22 | |||
23 | /** |
||
24 | * @var \DateTimeInterface |
||
25 | */ |
||
26 | protected $createdAt; |
||
27 | |||
28 | /** |
||
29 | * @var \DateTimeInterface |
||
30 | */ |
||
31 | protected $updatedAt; |
||
32 | |||
33 | /** |
||
34 | * @var string |
||
35 | */ |
||
36 | protected $query; |
||
37 | |||
38 | /** |
||
39 | * @return string |
||
40 | */ |
||
41 | public function getName() |
||
45 | |||
46 | /** |
||
47 | * @param string $name |
||
48 | * |
||
49 | * @return CustomerSavedSearch |
||
50 | */ |
||
51 | public function setName($name) |
||
57 | |||
58 | /** |
||
59 | * @return \DateTimeInterface |
||
60 | */ |
||
61 | public function getCreatedAt() |
||
65 | |||
66 | /** |
||
67 | * @param \DateTimeInterface $createdAt |
||
68 | * |
||
69 | * @return CustomerSavedSearch |
||
70 | */ |
||
71 | public function setCreatedAt($createdAt) |
||
77 | |||
78 | /** |
||
79 | * @return \DateTimeInterface |
||
80 | */ |
||
81 | public function getUpdatedAt() |
||
85 | |||
86 | /** |
||
87 | * @param \DateTimeInterface $updatedAt |
||
88 | * |
||
89 | * @return CustomerSavedSearch |
||
90 | */ |
||
91 | public function setUpdatedAt($updatedAt) |
||
97 | |||
98 | /** |
||
99 | * @return string |
||
100 | */ |
||
101 | public function getQuery() |
||
105 | |||
106 | /** |
||
107 | * @param string $query |
||
108 | * |
||
109 | * @return CustomerSavedSearch |
||
110 | */ |
||
111 | public function setQuery($query) |
||
117 | } |