blob: 11294c52f416b63eaf5cce9e83d2cdc4fe7e037f [file] [log] [blame]
/*
*******************************************************************************
* Copyright (c) 2019 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************
*/
package org.eclipse.openk.gridfailureinformation.stoerauskunftinterface.dtos;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
import java.io.Serializable;
@JsonIgnoreProperties(ignoreUnknown = true)
@Data
public class StoerungsauskunftUserNotification implements Serializable {
private String id;
private String date;
private String postcode;
private String city;
private String street;
private String houseNo;
private String district;
private String ags;
private String lat;
private String lng;
private String comment;
}