All Downloads are FREE. Search and download functionalities are using the official Maven repository.

au.org.consumerdatastandards.api.banking.models.BankingInternationalPayeeBankDetails Maven / Gradle / Ivy

Go to download

This artefact describes the Consumer Data Standards using Java classes and annotations in a way suitable for automatic generation of Open API Specification, documentation, Server Stub, Client Libraries and Reference Test.

There is a newer version: 1.1.1
Show newest version
package au.org.consumerdatastandards.api.banking.models;

import au.org.consumerdatastandards.support.data.*;

@DataDefinition(
    referenced = false
)
public class BankingInternationalPayeeBankDetails {

    @Property(
        description = "Country of the recipient institution. A valid [ISO 3166 Alpha-3](https://www.iso.org/iso-3166-country-codes.html) country code",
        required = true
    )
    @CDSDataType(CustomDataType.ExternalRef)
    String country;

    @Property(
        description = "Account Targeted for payment",
        required = true
    )
    String accountNumber;

    @Property
    BankingInternationalPayeeBankDetailsBankAddress bankAddress;

    @Property(
        description = "Swift bank code.  Aligns with standard [ISO 9362](https://www.iso.org/standard/60390.html)"
    )
    @CDSDataType(CustomDataType.ExternalRef)
    String beneficiaryBankBIC;

    @Property(
        description = "Number for Fedwire payment (Federal Reserve Wire Network)"
    )
    String fedWireNumber;

    @Property(
        description = "Sort code used for account identification in some jurisdictions"
    )
    String sortCode;

    @Property(
        description = "Number for the Clearing House Interbank Payments System"
    )
    String chipNumber;

    @Property(
        description = "International bank routing number"
    )
    String routingNumber;

    @Property(
        description = "The legal entity identifier (LEI) for the beneficiary.  Aligns with [ISO 17442](https://www.iso.org/standard/59771.html)"
    )
    @CDSDataType(CustomDataType.ExternalRef)
    String legalEntityIdentifier;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy