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\Webhooks\Model; |
12: | |
13: | class ProductApplication 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: | * Application status of a product. |
26: | |
27: | * |
28: | * @var string |
29: | */ |
30: | protected $cash; |
31: | |
32: | /** |
33: | * Application status of a product. |
34: | |
35: | `CLOSED` - The product account is closed. |
36: | */ |
37: | public function getCash(): string |
38: | { |
39: | return $this->cash; |
40: | } |
41: | |
42: | /** |
43: | * Application status of a product. |
44: | |
45: | `CLOSED` - The product account is closed. |
46: | */ |
47: | public function setCash(string $cash): self |
48: | { |
49: | $this->initialized['cash'] = true; |
50: | $this->cash = $cash; |
51: | |
52: | return $this; |
53: | } |
54: | } |
55: |