Account.php
2 years ago
AccountOwner.php
2 years ago
AccountOwnership.php
2 years ago
Session.php
2 years ago
AccountOwner.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | // File generated from our OpenAPI spec |
| 4 | |
| 5 | namespace Stripe\FinancialConnections; |
| 6 | |
| 7 | /** |
| 8 | * @property string $id Unique identifier for the object. |
| 9 | * @property string $object String representing the object's type. Objects of the same type share the same value. |
| 10 | * @property null|string $email The email address of the owner. |
| 11 | * @property string $name The full name of the owner. |
| 12 | * @property string $ownership The ownership object that this owner belongs to. |
| 13 | * @property null|string $phone The raw phone number of the owner. |
| 14 | * @property null|string $raw_address The raw physical address of the owner. |
| 15 | * @property null|int $refreshed_at The timestamp of the refresh that updated this owner. |
| 16 | */ |
| 17 | class AccountOwner extends \Stripe\ApiResource |
| 18 | { |
| 19 | const OBJECT_NAME = 'financial_connections.account_owner'; |
| 20 | } |
| 21 |