icij.ftm.Payment 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 Payment.
*/
public interface Payment extends Interval, Value {
LegalEntity getPayer();
LegalEntity getBeneficiary();
String getDate();
int getAmount();
String getPurpose();
String getSequenceNumber();
String getTransactionNumber();
String getProgramme();
BankAccount getPayerAccount();
BankAccount getBeneficiaryAccount();
Contract getContract();
Project getProject();
}