Class IncidentEvent


  • public class IncidentEvent
    extends java.lang.Object
    An incident has been resolved.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String incidentId
      The ID of the incident.
      java.lang.String reason
      The reason for the incident's resolution.
      java.lang.String type
      Can be either "resolved" or "cancelled".
    • Constructor Summary

      Constructors 
      Constructor Description
      IncidentEvent()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • type

        @SerializedName("type")
        public java.lang.String type
        Can be either "resolved" or "cancelled".
      • incidentId

        @SerializedName("incident_id")
        public java.lang.String incidentId
        The ID of the incident.
      • reason

        @SerializedName("reason")
        public java.lang.String reason
        The reason for the incident's resolution.
    • Constructor Detail

      • IncidentEvent

        public IncidentEvent()