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 PaymentAccountRequest 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: | * Payment Instruments associated with the vendor. |
26: | * |
27: | * @var mixed[] |
28: | */ |
29: | protected $details; |
30: | |
31: | /** |
32: | * Payment Instruments associated with the vendor. |
33: | * |
34: | * @return mixed[] |
35: | */ |
36: | public function getDetails(): iterable |
37: | { |
38: | return $this->details; |
39: | } |
40: | |
41: | /** |
42: | * Payment Instruments associated with the vendor. |
43: | * |
44: | * @param mixed[] $details |
45: | */ |
46: | public function setDetails(iterable $details): self |
47: | { |
48: | $this->initialized['details'] = true; |
49: | $this->details = $details; |
50: | |
51: | return $this; |
52: | } |
53: | } |
54: |