AccountOwnership.php 710 B

123456789101112131415161718
  1. <?php
  2. // File generated from our OpenAPI spec
  3. namespace Stripe\FinancialConnections;
  4. /**
  5. * Describes a snapshot of the owners of an account at a particular point in time.
  6. *
  7. * @property string $id Unique identifier for the object.
  8. * @property string $object String representing the object's type. Objects of the same type share the same value.
  9. * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
  10. * @property \Stripe\Collection<\Stripe\FinancialConnections\AccountOwner> $owners A paginated list of owners for this account.
  11. */
  12. class AccountOwnership extends \Stripe\ApiResource
  13. {
  14. const OBJECT_NAME = 'financial_connections.account_ownership';
  15. }