LoginLink.php 739 B

1234567891011121314151617
  1. <?php
  2. // File generated from our OpenAPI spec
  3. namespace Stripe;
  4. /**
  5. * Login Links are single-use URLs for a connected account to access the Express Dashboard. The connected account's <a href="/api/accounts/object#account_object-controller-stripe_dashboard-type">account.controller.stripe_dashboard.type</a> must be <code>express</code> to have access to the Express Dashboard.
  6. *
  7. * @property string $object String representing the object's type. Objects of the same type share the same value.
  8. * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
  9. * @property string $url The URL for the login link.
  10. */
  11. class LoginLink extends ApiResource
  12. {
  13. const OBJECT_NAME = 'login_link';
  14. }