UNPKG

@signumjs/core

Version:

Principal package with functions and models for building Signum Network applications.

15 lines (14 loc) 483 B
/** * The argument object for {@link TransactionApi.getSubscriptionPayments} * * @param {string} subscriptionId The numeric subscription Id * @param {number?} firstIndex The first index of the transaction list, beginning at 0 * @param {number?} lastIndex The last index of the transaction list (BRS does not return more than 500) * * @category args */ export interface GetSubscriptionPaymentsArgs { subscriptionId: string; firstIndex?: number; lastIndex?: number; }