Interface IAccountTransfer

interface IAccountTransfer {
    amount: string;
    createTime: number;
    currency: string;
    fromAccount: IAccountType;
    id: string;
    state: IActivityState;
    toAccount: IAccountType;
}

Hierarchy

Properties

amount: string
createTime: number
currency: string
fromAccount: IAccountType
id: string
state: IActivityState
toAccount: IAccountType