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 SetUserLimitRequest 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 SetUserLimitRequestMonthlyLimit
26: */
27: protected $monthlyLimit;
28:
29: public function getMonthlyLimit(): SetUserLimitRequestMonthlyLimit
30: {
31: return $this->monthlyLimit;
32: }
33:
34: public function setMonthlyLimit(SetUserLimitRequestMonthlyLimit $monthlyLimit): self
35: {
36: $this->initialized['monthlyLimit'] = true;
37: $this->monthlyLimit = $monthlyLimit;
38:
39: return $this;
40: }
41: }
42: