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 BookTransferDetailsResponse 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 string
26: */
27: protected $type;
28: /**
29: * This feature is currently limited to certain customers, please reach out if you are interested.
30: *
31: * @var string
32: */
33: protected $depositAccountId;
34:
35: public function getType(): string
36: {
37: return $this->type;
38: }
39:
40: public function setType(string $type): self
41: {
42: $this->initialized['type'] = true;
43: $this->type = $type;
44:
45: return $this;
46: }
47:
48: /**
49: * This feature is currently limited to certain customers, please reach out if you are interested.
50: */
51: public function getDepositAccountId(): string
52: {
53: return $this->depositAccountId;
54: }
55:
56: /**
57: * This feature is currently limited to certain customers, please reach out if you are interested.
58: */
59: public function setDepositAccountId(string $depositAccountId): self
60: {
61: $this->initialized['depositAccountId'] = true;
62: $this->depositAccountId = $depositAccountId;
63:
64: return $this;
65: }
66: }
67: