All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hirezapi.json.status.Incident Maven / Gradle / Ivy

The newest version!
package hirezapi.json.status;

import java.util.List;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@NoArgsConstructor
@AllArgsConstructor
public class Incident {
  private String title;
  private String url;
  private List incidents;

  public IncidentInfo getLastIncident() {
    return incidents.get(0);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy