BankAccount

BankAccount class

OFX uses the Banking Account aggregates to identify an account at an FI. The aggregates contain enough information to uniquely identify an account for the purposes of statement download, bill payment, and funds transfer.

public class BankAccount : AbstractAccount

Constructors

NameDescription
BankAccount()Initializes a new instance of BankAccount class.

Properties

NameDescription
AccountId { get; set; }Gets or sets the account identifier.
AccountKey { get; set; }Gets or sets the checksum.
AccountType { get; set; }Gets or sets the account type
BankId { get; set; }Gets or sets the bank identifier.
BranchId { get; set; }Gets or sets the branch identifier. May be required for some non-US banks.

See Also