ClubOfficialDTO Data Type

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

Example

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