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.

29 lines (23 loc) 756 B
import { DateOptions, FieldOptions, ListOptions, ProcessedOptions } from "./base"; export interface PaymentTransactionListOptions extends FieldOptions, DateOptions, ProcessedOptions, ListOptions { /** * Filter response to transactions exclusively before the specified ID */ last_id?: number; /** * Filter response to transactions paid out in the specified payout. */ payout_id?: number; /** * Filter response to transactions with the specified payout status */ payout_status?: string; /** * Filter response to transactions exclusively after the specified ID. */ since_id?: number; /** * Filter response to transactions placed in test mode. */ test?: boolean; }