MaintenanceResponse Data Type

Response containing maintenance information

Properties
name data type constraints description
maintenance boolean required boolean True when the maintenance mode is active, false if not
banner boolean required boolean True when the maintenance message should be shown in the ui
messages array of Message   Messages contained in the response (which should be shown to the user)
message string   Maintenance message
responseInfo ResponseInfo  

Example

{
  "maintenance" : true,
  "banner" : true,
  "messages" : [ { }, { } ],
  "message" : "...",
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  }
}