| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | |
| 6: | |
| 7: | |
| 8: | |
| 9: | |
| 10: | |
| 11: | namespace NxSys\Library\Clients\Brex\API\Team\Model; |
| 12: | |
| 13: | class CardAttributePreferences extends \ArrayObject |
| 14: | { |
| 15: | |
| 16: | |
| 17: | |
| 18: | protected $initialized = []; |
| 19: | |
| 20: | public function isInitialized($property): bool |
| 21: | { |
| 22: | return array_key_exists($property, $this->initialized); |
| 23: | } |
| 24: | |
| 25: | |
| 26: | |
| 27: | protected $threeDomainSecureEnabledPreference; |
| 28: | |
| 29: | public function getThreeDomainSecureEnabledPreference(): string |
| 30: | { |
| 31: | return $this->threeDomainSecureEnabledPreference; |
| 32: | } |
| 33: | |
| 34: | public function setThreeDomainSecureEnabledPreference(string $threeDomainSecureEnabledPreference): self |
| 35: | { |
| 36: | $this->initialized['threeDomainSecureEnabledPreference'] = true; |
| 37: | $this->threeDomainSecureEnabledPreference = $threeDomainSecureEnabledPreference; |
| 38: | |
| 39: | return $this; |
| 40: | } |
| 41: | } |
| 42: | |