Adyen · Schema

BalanceSweepConfigurationsResponse

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

adyen-balancesweepconfigurationsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BalanceSweepConfigurationsResponse",
  "title": "BalanceSweepConfigurationsResponse",
  "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"
  ],
  "type": "object"
}