Interface IAccount

interface IAccount {
    accountId: string;
    accountState: IAccountState;
    accountType: IAccountType;
}

Properties

accountId: string
accountState: IAccountState
accountType: IAccountType