[Klarna][Checkout v2] The documentation states that the «shipping_address.street_name» and «shipping_address.street_number» fields are read only, but really the API allows to pass them in

https://developers.klarna.com/en/se/kco-v2/checkout-api#address-object-properties

{
    <...>
    "purchase_country": "de",
    "purchase_currency": "eur",
    "locale": "de-de",
    <...>
    "shipping_address": {
        <...>
        "street_name": "Karl-Liebknecht-Strasse",
        "street_number": "3",
        <...>
    },
    <...>
}

They are then shown on the Klarna’s payment form.