NAME
Net::API::Stripe::Connect::Account::Relationship - A Stripe Account Relationship Object
SYNOPSIS
my $rel = $stripe->person->relationship({
director => $stripe->true,
executive => $stripe->true,
owner => $stripe->true,
percent_ownership => 33,
representative => $stripe->true,
title => 'Representative Director',
});
VERSION
v0.100.0
DESCRIPTION
Describes the person’s relationship to the account.
CONSTRUCTOR
new( %ARG )
Creates a new Net::API::Stripe::Connect::Account::Relationship object. It may also take an hash like arguments, that also are method of the same name.
This is instantiated from the method relationship in module Net::API::Stripe::Connect::Person
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_fake123456789",
"object": "person",
"account": "acct_fake123456789",
"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) 2019-2020 DEGUEST Pte. Ltd.
You can use, copy, modify and redistribute this package and associated files under the same terms as Perl itself.