DSBClubDTO Data Type

Data transfer object representing a chess club in the DSB Wertungsportal.

Fields

  • clubVkz – Club number (VKZ / Vereinskennziffer), uniquely identifying the club within the DSB.
  • clubName – Name of the club.
  • federation – VKZ of the federation (Verband) the club belongs to.
  • parentFederation – VKZ of the parent federation (übergeordneter Verband).
  • state – State of the club (DELETE_STATE_FALSE or DELETE_STATE_TRUE). Only serialized in the JSON response, never written to the CSV export.

Properties
name data type description
clubVkz string
clubName string
federation string
parentFederation string
state ClubState

Example

{
  "clubVkz" : "...",
  "clubName" : "...",
  "federation" : "...",
  "parentFederation" : "...",
  "state" : "DELETE_STATE_TRUE"
}