var stripe = Stripe('pk_test_51JaZneFymkOlJfbtifS7RjJeFPZTchtlvU5iiVmemkU76vOFWWPZOW9GwBDb9518RCoOfkvUQkGV92TyEMaXqYgh00eb6kLKZj'); var session = "<?php echo $checkout_session['id']; ?>"; stripe.redirectToCheckout({ sessionId: session }) .then(function(result) { // If `redirectToCheckout` fails due to a browser or network // error, you should display the localized error message to your // customer using `error.message`. if (result.error) { alert(result.error.message); } }) .catch(function(error) { console.error('Error:', error); });Por alguna razón, no puedo obtener acceso al valor de "resultado" en >> .then(función (resultado) << ¿alguien puede decirme qué valores están disponibles en el "resultado"?