@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
19 lines (18 loc) • 419 B
TypeScript
/**
* The argument object for {@link AssetApi.getOpenAskOrdersPerAccount} and {@link AssetApi.getOpenBidOrdersPerAccount}
*
*
* @category args
*/
export interface GetAssetOpenOrdersPerAccountArgs {
/**
* The Account Identifier
*/
accountId: string;
/**
* An optional asset identifier to filter by given asset
*/
assetId?: string;
firstIndex?: number;
lastIndex?: number;
}