UNPKG

inventora-shopify-admin-api

Version:

Shopify Admin API is a NodeJS library built to help developers easily authenticate and make calls against the Shopify API. It was inspired by and borrows heavily from ShopifySharp.

13 lines (12 loc) 576 B
import * as Options from '../options'; import { BaseService } from '../infrastructure'; import { PaymentTransaction } from '../interfaces'; export declare class PaymentTransactions extends BaseService { constructor(shopDomain: string, accessToken: string); /** * Retrieves a list of all balance transactions ordered by processing time, with the most recent being first. * @param options Options for filtering the results. */ list(options?: Options.PaymentTransactionListOptions): Promise<PaymentTransaction[]>; } export default PaymentTransactions;