Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
vendor
/
stripe
/
stripe-php
/
lib
/
Checkout
/
//srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/stripe/stripe-php/lib/Checkout/Session.php
<?php namespace Stripe\Checkout; /** * Class Session * * @property string $id * @property string $object * @property string $cancel_url * @property string $client_reference_id * @property string $customer * @property string $customer_email * @property mixed $display_items * @property bool $livemode * @property string $payment_intent * @property string[] $payment_method_types * @property string $submit_type * @property string $subscription * @property string $success_url * * @package Stripe */ class Session extends \Stripe\ApiResource { const OBJECT_NAME = "checkout.session"; use \Stripe\ApiOperations\Create; use \Stripe\ApiOperations\Retrieve; /** * Possible string representations of submit type. * @link https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-submit_type */ const SUBMIT_TYPE_AUTO = 'auto'; const SUBMIT_TYPE_BOOK = 'book'; const SUBMIT_TYPE_DONATE = 'donate'; const SUBMIT_TYPE_PAY = 'pay'; }