Thank you! :)
I get the following:
```
ThirtyBeesException
Class 'Stripe\Customer' not found
at line 119 in file modules/stripe/vendor/stripe/stripe-php/lib/Util/Util.php
php
114. if (isset($resp['object']) && is_string($resp['object']) && isset($types[$resp['object']])) {
115. $class = $types[$resp['object']];
116. } else {
117. $class = 'Stripe\\StripeObject';
118. }
119. => return $class::constructFrom($resp, $opts);
120. } else {
121. return $resp;
122. }
123. }
124. /**
- ThirtyBeesStripe\Stripe\Util\Util::convertToStripeObject - [line 135 - modules/stripe/vendor/stripe/stripe-php/lib/ApiResource.php]
- [2 Arguments]
php
130. protected static function _create($params = null, $options = null)
131. {
132. self::_validateParams($params);
133. $url = static::classUrl();
134. list($response, $opts) = static::_staticRequest('post', $url, $params, $options);
135. => $obj = \ThirtyBeesStripe\Stripe\Util\Util::convertToStripeObject($response->json, $opts);
136. $obj->setLastResponse($response);
137. return $obj;
138. }
139. /**
140. * @param string $id The ID of the API resource to update.
and more, but it looks like the above is the relevant part.