Unfortunately, the underlying dotnet API from Klarna doesn’t seem to include the phone mandatory option. You could try creating a new class that inherits the CheckoutOptions class and add your property. Something like:
public class CustomCheckoutOptions : CheckoutOptions
{
[JsonProperty(PropertyName = "phone_mandatory")]
public bool PhoneMandatory { get; set; }
}
And then use that class in the method above instead.