AccountLink.php 830 B

1234567891011121314151617181920212223242526
  1. <?php
  2. // File generated from our OpenAPI spec
  3. namespace Stripe;
  4. /**
  5. * Account Links are the means by which a Connect platform grants a connected
  6. * account permission to access Stripe-hosted applications, such as Connect
  7. * Onboarding.
  8. *
  9. * Related guide: <a
  10. * href="https://stripe.com/docs/connect/connect-onboarding">Connect
  11. * Onboarding</a>.
  12. *
  13. * @property string $object String representing the object's type. Objects of the same type share the same value.
  14. * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
  15. * @property int $expires_at The timestamp at which this account link will expire.
  16. * @property string $url The URL for the account link.
  17. */
  18. class AccountLink extends ApiResource
  19. {
  20. const OBJECT_NAME = 'account_link';
  21. use ApiOperations\Create;
  22. }