icij.ftm.Address Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ftm.java Show documentation
Show all versions of ftm.java Show documentation
ICIJ implementation of the Aleph Follow the Money ontology.
The newest version!
package org.icij.ftm;
/**
* Automatically generated interface for FtM model. Do not update this interface.
* @see Address.
*/
public interface Address extends Thing {
String getFull();
String getCity();
String getStreet();
String getCountry();
String getRemarks();
String getPostOfficeBox();
String getStreet2();
String getPostalCode();
String getRegion();
String getState();
int getLatitude();
int getLongitude();
String getOsmId();
String getGooglePlaceId();
}