summaryrefslogtreecommitdiffstats
path: root/vendor/stripe/stripe-php/lib/Service/BillingPortal/SessionService.php
blob: e508c2ae31b61961d2389efb8d4e2422b9287cb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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);
    }
}