wp-user-avatar
/
third-party
/
vendor
/
stripe
/
stripe-php
/
lib
/
FinancialConnections
/
AccountOwnership.php
wp-user-avatar
/
third-party
/
vendor
/
stripe
/
stripe-php
/
lib
/
FinancialConnections
Last commit date
Account.php
2 months ago
AccountOwner.php
2 months ago
AccountOwnership.php
2 months ago
Session.php
2 months ago
Transaction.php
2 months ago
AccountOwnership.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | // File generated from our OpenAPI spec |
| 4 | namespace ProfilePressVendor\Stripe\FinancialConnections; |
| 5 | |
| 6 | /** |
| 7 | * Describes a snapshot of the owners of an account at a particular point in time. |
| 8 | * |
| 9 | * @property string $id Unique identifier for the object. |
| 10 | * @property string $object String representing the object's type. Objects of the same type share the same value. |
| 11 | * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch. |
| 12 | * @property \Stripe\Collection<\Stripe\FinancialConnections\AccountOwner> $owners A paginated list of owners for this account. |
| 13 | */ |
| 14 | class AccountOwnership extends \ProfilePressVendor\Stripe\ApiResource |
| 15 | { |
| 16 | const OBJECT_NAME = 'financial_connections.account_ownership'; |
| 17 | } |
| 18 |