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::Relationship - A Stripe Account Relationship Object

SYNOPSIS

VERSION

    0.1

DESCRIPTION

Describes the person’s relationship to the account.

CONSTRUCTOR

new( %ARG )

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

verbose

Toggles verbose mode on/off

debug

Toggles debug mode on/off

METHODS

director boolean

Whether the person is a director of the account’s legal entity. Currently only required for accounts in the EU. Directors are typically members of the governing board of the company, or responsible for ensuring the company meets its regulatory obligations.

executive boolean

Whether the person has significant responsibility to control, manage, or direct the organization.

owner boolean

Whether the person is an owner of the account’s legal entity.

percent_ownership decimal

The percent owned by the person of the account’s legal entity.

representative boolean

Whether the person is authorized as the primary representative of the account. This is the person nominated by the business to provide information about themselves, and general information about the account. There can only be one representative at any given time. At the time the account is created, this person should be set to the person responsible for opening the account.

title string

The person’s title (e.g., CEO, Support Engineer).

API SAMPLE

        {
          "id": "person_G1oOYsyChrE4Qa",
          "object": "person",
          "account": "acct_19eGgRCeyNCl6fY2",
          "created": 1571602397,
          "dob": {
                "day": null,
                "month": null,
                "year": null
          },
          "first_name_kana": null,
          "first_name_kanji": null,
          "gender": null,
          "last_name_kana": null,
          "last_name_kanji": null,
          "metadata": {},
          "relationship": {
                "director": false,
                "executive": false,
                "owner": false,
                "percent_ownership": null,
                "representative": false,
                "title": null
          },
          "requirements": {
                "currently_due": [],
                "eventually_due": [],
                "past_due": [],
                "pending_verification": []
          },
          "verification": {
                "additional_document": {
                  "back": null,
                  "details": null,
                  "details_code": null,
                  "front": null
                },
                "details": null,
                "details_code": null,
                "document": {
                  "back": null,
                  "details": null,
                  "details_code": null,
                  "front": null
                },
                "status": "unverified"
          }
        }

HISTORY

v0.1

Initial version

AUTHOR

Jacques Deguest <jack@deguest.jp>

SEE ALSO

Stripe API documentation:

https://stripe.com/docs/api/persons/object

COPYRIGHT & LICENSE

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

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

1 POD Error

The following errors were encountered while parsing the POD:

Around line 74:

You forgot a '=back' before '=head1'