dolibarr/htdocs/includes/stripe/stripe-php/lib/AccountLink.php

27 lines
830 B
PHP
Raw Normal View History

2019-05-03 02:22:27 +02:00
<?php
2021-01-03 23:37:44 +01:00
// File generated from our OpenAPI spec
2019-05-03 02:22:27 +02:00
namespace Stripe;
/**
2021-01-03 23:37:44 +01:00
* Account Links are the means by which a Connect platform grants a connected
* account permission to access Stripe-hosted applications, such as Connect
* Onboarding.
2019-05-03 02:22:27 +02:00
*
2021-01-03 23:37:44 +01:00
* Related guide: <a
* href="https://stripe.com/docs/connect/connect-onboarding">Connect
* Onboarding</a>.
2019-05-03 02:22:27 +02:00
*
2021-01-03 23:37:44 +01:00
* @property string $object String representing the object's type. Objects of the same type share the same value.
* @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
* @property int $expires_at The timestamp at which this account link will expire.
* @property string $url The URL for the account link.
2019-05-03 02:22:27 +02:00
*/
class AccountLink extends ApiResource
{
2021-01-03 23:37:44 +01:00
const OBJECT_NAME = 'account_link';
2019-05-03 02:22:27 +02:00
use ApiOperations\Create;
}