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 Department 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: * The unique identifier for the department.
26: *
27: * @var string
28: */
29: protected $id;
30: /**
31: * The name of the department.
32: *
33: * @var string
34: */
35: protected $name;
36:
37: /**
38: * The unique identifier for the department.
39: */
40: public function getId(): string
41: {
42: return $this->id;
43: }
44:
45: /**
46: * The unique identifier for the department.
47: */
48: public function setId(string $id): self
49: {
50: $this->initialized['id'] = true;
51: $this->id = $id;
52:
53: return $this;
54: }
55:
56: /**
57: * The name of the department.
58: */
59: public function getName(): string
60: {
61: return $this->name;
62: }
63:
64: /**
65: * The name of the department.
66: */
67: public function setName(string $name): self
68: {
69: $this->initialized['name'] = true;
70: $this->name = $name;
71:
72: return $this;
73: }
74: }
75: