AccountOwner.php 854 B

12345678910111213141516171819202122
  1. <?php
  2. // File generated from our OpenAPI spec
  3. namespace Stripe\FinancialConnections;
  4. /**
  5. * Describes an owner of an account.
  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 null|string $email The email address of the owner.
  10. * @property string $name The full name of the owner.
  11. * @property string $ownership The ownership object that this owner belongs to.
  12. * @property null|string $phone The raw phone number of the owner.
  13. * @property null|string $raw_address The raw physical address of the owner.
  14. * @property null|int $refreshed_at The timestamp of the refresh that updated this owner.
  15. */
  16. class AccountOwner extends \Stripe\ApiResource
  17. {
  18. const OBJECT_NAME = 'financial_connections.account_owner';
  19. }