Interface GetSubscriptionPaymentsArgs

The numeric subscription Id

The first index of the transaction list, beginning at 0

The last index of the transaction list (BRS does not return more than 500)

interface GetSubscriptionPaymentsArgs {
    firstIndex?: number;
    lastIndex?: number;
    subscriptionId: string;
}

Properties

firstIndex?: number
lastIndex?: number
subscriptionId: string