Klarna · Schema

OptionDto

The available options and corresponding fees for extending the due date

FintechBNPLPaymentsCardsShopping

Properties

Name Type Description
amount integer The fee for extending the due date this many days. In minor units.
number_of_days integer How many days to extend the due date with
View JSON Schema on GitHub

JSON Schema

klarna-optiondto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OptionDto",
  "title": "OptionDto",
  "description": "The available options and corresponding fees for extending the due date",
  "properties": {
    "amount": {
      "description": "The fee for extending the due date this many days. In minor units.",
      "format": "int64",
      "type": "integer"
    },
    "number_of_days": {
      "description": "How many days to extend the due date with",
      "format": "int32",
      "type": "integer"
    }
  },
  "type": "object"
}