The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::API::Stripe::Connect::Account::LoginLink - A Stripe Login Link Object

SYNOPSIS

    my $login_lnk = $stripe->login_link({
        url => 'https://example.com/login',
    });

VERSION

    v0.100.0

DESCRIPTION

Login link module as documented on the Stripe Account section

CONSTRUCTOR

new( %ARG )

Creates a new Net::API::Stripe::Connect::Account::LoginLink object. It may also take an hash like arguments, that also are method of the same name.

METHODS

object string, value is "login_link"

String representing the object’s type. Objects of the same type share the same value.

created timestamp

Time at which the object was created. Measured in seconds since the Unix epoch.

url string

The URL for the login link.

API SAMPLE

    {
      "object": "login_link",
      "created": 1571735987,
      "url": "https://connect.stripe.com/express/nnmcnbmzbcnm"
    }

HISTORY

v0.1

Initial version

AUTHOR

Jacques Deguest <jack@deguest.jp>

SEE ALSO

Stripe API documentation:

https://stripe.com/docs/api/account/login_link

COPYRIGHT & LICENSE

Copyright (c) 2019-2020 DEGUEST Pte. Ltd.

You can use, copy, modify and redistribute this package and associated files under the same terms as Perl itself.