stripe
Version:
Stripe API wrapper
27 lines (23 loc) • 873 B
TypeScript
// File generated from our OpenAPI spec
declare module 'stripe' {
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 [Account Link](https://stripe.com/docs/api/account_links) in that it takes the user directly to their [Express dashboard for the specified account](https://stripe.com/docs/connect/integrate-express-dashboard#create-login-link)
*/
interface LoginLink {
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'login_link';
/**
* Time at which the object was created. Measured in seconds since the Unix epoch.
*/
created: number;
/**
* The URL for the login link.
*/
url: string;
}
}
}