The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

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

SYNOPSIS

    my $lnk = $stripe->account_link({
        expires_at => '2020-06-01',
        url => 'https://example.com/some/file.pdf',
    });

VERSION

    0.1

DESCRIPTION

Account Links are the means by which a Connect platform grants a connected account permission to access Stripe-hosted applications, such as Connect Onboarding.

CONSTRUCTOR

new( %ARG )

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

METHODS

object string, value is "account_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.

expires_at timestamp

The timestamp at which this account link will expire.

url string

The URL for the account link.

API SAMPLE

        {
          "object": "account_link",
          "created": 1571480455,
          "expires_at": 1571480755,
          "url": "https://connect.stripe.com/setup/c/mbmnjccbnmcbnmcb"
        }

HISTORY

v0.1

Initial version

AUTHOR

Jacques Deguest <jack@deguest.jp>

SEE ALSO

Stripe API documentation:

https://stripe.com/docs/api/account_links, https://stripe.com/docs/connect/connect-onboarding

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.