checkoutSessionObject = give( Give_Stripe_Checkout_Session::class )->create( $paymentIntentArgs ); return $this; } /** * @since 2.19.0 * @return string */ public function id() { return $this->checkoutSessionObject->id; } /** * @since 2.19.0 * @return string */ public function url() { return $this->checkoutSessionObject->url; } }