icij.ftm.BankAccount 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 BankAccount.
*/
public interface BankAccount extends Asset {
String getAccountNumber();
String getBankName();
String getIban();
String getBic();
Organization getBank();
String getAccountType();
String getOpeningDate();
String getClosingDate();
int getBalance();
String getBalanceDate();
int getMaxBalance();
String getMaxBalanceDate();
String getBankAddress();
}