1: | <?php |
2: | |
3: | declare(strict_types=1); |
4: | |
5: | /* |
6: | * This file has been auto generated by Jane, |
7: | * |
8: | * Do no edit it directly. |
9: | */ |
10: | |
11: | namespace NxSys\Library\Clients\Brex\API\Expenses\Model; |
12: | |
13: | class UpdateExpenseRequest extends \ArrayObject |
14: | { |
15: | /** |
16: | * @var array |
17: | */ |
18: | protected $initialized = []; |
19: | |
20: | public function isInitialized($property): bool |
21: | { |
22: | return array_key_exists($property, $this->initialized); |
23: | } |
24: | /** |
25: | * Expense memo. |
26: | * |
27: | * @var string|null |
28: | */ |
29: | protected $memo; |
30: | |
31: | /** |
32: | * Expense memo. |
33: | */ |
34: | public function getMemo(): ?string |
35: | { |
36: | return $this->memo; |
37: | } |
38: | |
39: | /** |
40: | * Expense memo. |
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: |