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.

21 lines (18 loc) 632 B
import { ShopifyObject } from "./base"; /** * An object representing Shopify's ApplicationCredit object, which can be used to offer credits for payments made via the Application Charge, Recurring Application Charge, and Usage Charge APIs. */ export interface ApplicationCredit extends ShopifyObject { /** * The description of the application credit. */ description?: string; /** * The amount refunded by the application credit. */ amount?: number; /** * States whether or not the application credit is a test transaction. Valid values are true or null. */ test?: boolean; }