Adyen · Schema

BalanceSweepConfigurationsResponse

BalanceSweepConfigurationsResponse schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
hasNext boolean Indicates whether there are more items on the next page.
hasPrevious boolean Indicates whether there are more items on the previous page.
sweeps array List of sweeps associated with the balance account.
View JSON Schema on GitHub

JSON Schema

configuration-balance-sweep-configurations-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-balance-sweep-configurations-response-schema.json",
  "title": "BalanceSweepConfigurationsResponse",
  "description": "BalanceSweepConfigurationsResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "hasNext": {
      "description": "Indicates whether there are more items on the next page.",
      "type": "boolean"
    },
    "hasPrevious": {
      "description": "Indicates whether there are more items on the previous page.",
      "type": "boolean"
    },
    "sweeps": {
      "description": "List of sweeps associated with the balance account.",
      "items": {
        "$ref": "#/components/schemas/SweepConfigurationV2"
      },
      "type": "array"
    }
  },
  "required": [
    "sweeps",
    "hasPrevious",
    "hasNext"
  ]
}