Bunq · Schema

TransferwiseQuoteRead

Banking

Properties

Name Type Description
id integer The id of the quote.
created string The timestamp of the quote's creation.
updated string The timestamp of the quote's last update.
time_expiry string The expiration timestamp of the quote.
quote_id string The quote id Transferwise needs.
amount_source object The source amount.
amount_target object The target amount.
amount_fee object The fee amount.
rate string The rate.
time_delivery_estimate string The estimated delivery time.
View JSON Schema on GitHub

JSON Schema

bunq-transferwisequoteread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransferwiseQuoteRead",
  "title": "TransferwiseQuoteRead",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The id of the quote.",
      "readOnly": true,
      "writeOnly": false
    },
    "created": {
      "type": "string",
      "description": "The timestamp of the quote's creation.",
      "readOnly": true,
      "writeOnly": false
    },
    "updated": {
      "type": "string",
      "description": "The timestamp of the quote's last update.",
      "readOnly": true,
      "writeOnly": false
    },
    "time_expiry": {
      "type": "string",
      "description": "The expiration timestamp of the quote.",
      "readOnly": true,
      "writeOnly": false
    },
    "quote_id": {
      "type": "string",
      "description": "The quote id Transferwise needs.",
      "readOnly": true,
      "writeOnly": false
    },
    "amount_source": {
      "type": "object",
      "description": "The source amount.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "amount_target": {
      "type": "object",
      "description": "The target amount.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "amount_fee": {
      "type": "object",
      "description": "The fee amount.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "rate": {
      "type": "string",
      "description": "The rate.",
      "readOnly": true,
      "writeOnly": false
    },
    "time_delivery_estimate": {
      "type": "string",
      "description": "The estimated delivery time.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}