1: | <?php |
2: | |
3: | declare(strict_types=1); |
4: | |
5: | |
6: | |
7: | |
8: | |
9: | |
10: | |
11: | namespace NxSys\Library\Clients\Brex\API\Expenses\Model; |
12: | |
13: | class UpdateExpenseRequest extends \ArrayObject |
14: | { |
15: | |
16: | |
17: | |
18: | protected $initialized = []; |
19: | |
20: | public function isInitialized($property): bool |
21: | { |
22: | return array_key_exists($property, $this->initialized); |
23: | } |
24: | |
25: | |
26: | |
27: | |
28: | |
29: | protected $memo; |
30: | |
31: | |
32: | |
33: | |
34: | public function getMemo(): ?string |
35: | { |
36: | return $this->memo; |
37: | } |
38: | |
39: | |
40: | |
41: | |
42: | public function setMemo(?string $memo): self |
43: | { |
44: | $this->initialized['memo'] = true; |
45: | $this->memo = $memo; |
46: | |
47: | return $this; |
48: | } |
49: | } |
50: | |