blob: 1d41ff66289428dc7251512bacff5d027e06ac01 [file] [log] [blame]
package org.eclipse.openk.contactbasedata.viewmodel;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.io.Serializable;
import java.util.UUID;
@Data
public class AddressDto implements Serializable {
@JsonProperty("id")
private UUID uuid;
private Boolean isMainAddress;
private String postcode;
private String community;
private String communitySuffix;
private String street;
private String housenumber;
private String wgs84Zone;
private String latitude;
private String longitude;
private String urlMap;
private String note;
//fromAddressType
@JsonProperty("adressId")
private UUID adressUuid;
private String type;
private String description;
}