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\Team\Model;
12:
13: class UserLimitResponse 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: * @var UserLimitResponseMonthlyLimit
26: */
27: protected $monthlyLimit;
28: /**
29: * @var UserLimitResponseMonthlyAvailable
30: */
31: protected $monthlyAvailable;
32:
33: public function getMonthlyLimit(): UserLimitResponseMonthlyLimit
34: {
35: return $this->monthlyLimit;
36: }
37:
38: public function setMonthlyLimit(UserLimitResponseMonthlyLimit $monthlyLimit): self
39: {
40: $this->initialized['monthlyLimit'] = true;
41: $this->monthlyLimit = $monthlyLimit;
42:
43: return $this;
44: }
45:
46: public function getMonthlyAvailable(): UserLimitResponseMonthlyAvailable
47: {
48: return $this->monthlyAvailable;
49: }
50:
51: public function setMonthlyAvailable(UserLimitResponseMonthlyAvailable $monthlyAvailable): self
52: {
53: $this->initialized['monthlyAvailable'] = true;
54: $this->monthlyAvailable = $monthlyAvailable;
55:
56: return $this;
57: }
58: }
59: