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\Payments\Model; |
12: | |
13: | class PaymentAccountResponse 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 mixed[] |
26: | */ |
27: | protected $details; |
28: | |
29: | /** |
30: | * @return mixed[] |
31: | */ |
32: | public function getDetails(): iterable |
33: | { |
34: | return $this->details; |
35: | } |
36: | |
37: | /** |
38: | * @param mixed[] $details |
39: | */ |
40: | public function setDetails(iterable $details): self |
41: | { |
42: | $this->initialized['details'] = true; |
43: | $this->details = $details; |
44: | |
45: | return $this; |
46: | } |
47: | } |
48: |