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.
17 lines (15 loc) • 393 B
text/typescript
export interface GiftCardOptions {
/**
* Field and direction to order results by
*/
order: string;
/**
* Text to search gift cards
*/
query: string;
/**
* Restrict results to only enabled/disabled gift cards. Note: This is only usabled
* with the /admin/gift_cards.json api and not /admin/gift_cards/search.json
*/
status: string;
}