Skip to content

Commit

Permalink
Codegen for openapi 5a7b6ad
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-stripe committed Jun 3, 2020
1 parent a8981c1 commit 87f5e50
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions lib/BillingPortal/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@
namespace Stripe\BillingPortal;

/**
* A session describes the instantiation of the self-serve portal for a particular
* customer. By visiting the self-serve portal's URL, the customer can manage their
* A session describes the instantiation of the customer portal for a particular
* customer. By visiting the portal's URL, the customer can manage their
* subscriptions and billing details. For security reasons, sessions are
* short-lived and will expire if the customer does not visit the URL. Create
* Sessions on-demand.
*
* Integration guide: <a
* href="https://stripe.com/docs/billing/subscriptions/integrating-self-serve-portal">Billing
* self-serve portal</a>.
* href="https://stripe.com/docs/billing/subscriptions/integrating-customer-portal">Billing
* customer portal</a>.
*
* @property string $id Unique identifier for the object.
* @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 string $customer The ID of the customer for this session.
* @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
* @property string $return_url The URL to which Stripe should send customers when they click on the link to return to your website.
* @property string $url The short-lived URL of the session giving customers access to the self-serve portal.
* @property string $url The short-lived URL of the session giving customers access to the customer portal.
*/
class Session extends \Stripe\ApiResource
{
Expand Down
2 changes: 1 addition & 1 deletion lib/Service/BillingPortal/SessionService.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class SessionService extends \Stripe\Service\AbstractService
{
/**
* Creates a session of the self-serve portal.
* Creates a session of the customer portal.
*
* @param null|array $params
* @param null|array|\Stripe\Util\RequestOptions $opts
Expand Down

0 comments on commit 87f5e50

Please sign in to comment.