go-wiki/vendor/github.com/stripe/stripe-go/loginlink.go
2020-03-20 00:19:27 +01:00

16 lines
562 B
Go

package stripe
// LoginLinkParams is the set of parameters that can be used when creating a login_link.
// For more details see https://stripe.com/docs/api#create_login_link.
type LoginLinkParams struct {
Params `form:"*"`
Account *string `form:"-"` // Included in URL
RedirectURL *string `form:"redirect_url"`
}
// LoginLink is the resource representing a login link for Express accounts.
// For more details see https://stripe.com/docs/api#login_link_object
type LoginLink struct {
Created int64 `json:"created"`
URL string `json:"url"`
}