This commit is contained in:
Xes
2025-08-14 22:41:49 +02:00
parent 2de81ccc46
commit 8ce45119b6
39774 changed files with 4309466 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
// File generated from our OpenAPI spec
namespace Stripe;
/**
* Login Links are single-use URLs that takes an Express account to the login page for their Stripe dashboard.
* A Login Link differs from an <a href="https://stripe.com/docs/api/account_links">Account Link</a> in that it takes the user directly to their <a href="https://stripe.com/docs/connect/integrate-express-dashboard#create-login-link">Express dashboard for the specified account</a>.
*
* @property string $object String representing the object's type. Objects of the same type share the same value.
* @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
* @property string $url The URL for the login link.
*/
class LoginLink extends ApiResource
{
const OBJECT_NAME = 'login_link';
}