modern-events-calendar-lite/app/api/Stripe/Service/BillingPortal/SessionService.php

24 lines
627 B
PHP
Raw Permalink Normal View History

2024-10-15 12:04:03 +02:00
<?php
// File generated from our OpenAPI spec
namespace Stripe\Service\BillingPortal;
class SessionService extends \Stripe\Service\AbstractService
{
/**
* Creates a session of the customer portal.
*
* @param null|array $params
* @param null|array|\Stripe\Util\RequestOptions $opts
*
* @throws \Stripe\Exception\ApiErrorException if the request fails
*
* @return \Stripe\BillingPortal\Session
*/
public function create($params = null, $opts = null)
{
return $this->request('post', '/v1/billing_portal/sessions', $params, $opts);
}
}