stripe
Version:
Stripe API wrapper
15 lines (14 loc) • 358 B
TypeScript
export 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;
}