How to filter checkout attributes value in an array?

Hi

Im printing out this object in my checkout to see that the correct value are passed along

{{ checkout.attributes }}

And this is what is printed out

{"pickup_point"=>"hej"}

How do i add an filter to the checkout.attributes so that it only prints out the value from the array/object? So it only shows the value “hej”

Thank you

Hey,

Try

{{ checkout.attributes.pickup_point }} or {{ checkout.attributes["pickup_point"] }}

If that doesn’t work, try to add apply the json filter to see the object structure.