ClubOfficialDTO Data Type

Properties
name data type constraints description
firstname string  
role string  
title string  
availability string  
address AddressDTO  
lastname string  
personUri string  
personId string  
privacyStateActivated boolean required boolean
addressUri string  

Example

{
  "firstname" : "...",
  "role" : "...",
  "title" : "...",
  "availability" : "...",
  "address" : {
    "country" : "...",
    "distance" : 12345.0,
    "contactPerson" : "...",
    "label" : "...",
    "zip" : "...",
    "phoneHome" : "...",
    "phoneMobile" : "...",
    "www" : "...",
    "latitude" : 12345.0,
    "city" : "...",
    "longitude" : 12345.0,
    "emailHome" : "...",
    "type" : "court",
    "phoneWork" : "...",
    "street" : "...",
    "faxWork" : "...",
    "faxHome" : "...",
    "emailWork" : "..."
  },
  "lastname" : "...",
  "personUri" : "...",
  "personId" : "...",
  "privacyStateActivated" : true,
  "addressUri" : "..."
}