The client secret of this customer session. Used on the client to set up secure access to the given customer.

The client secret can be used to provide access to customer from your frontend. It should not be stored, logged, or exposed to anyone other than the relevant customer. Make sure that you have TLS enabled on any page that includes the client secret.

* @property null|\Stripe\StripeObject $components Configuration for the components supported by this customer session. * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch. * @property string|\Stripe\Customer $customer The customer the customer session was created for. * @property int $expires_at The timestamp at which this customer session will expire. * @property bool $livemode Has the value true if the object exists in live mode or the value false if the object exists in test mode. */ class CustomerSession extends ApiResource { const OBJECT_NAME = 'customer_session'; use ApiOperations\Create; }