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.
12 lines (11 loc) • 348 B
TypeScript
import { DateOptions, FieldOptions, ListOptions } from "./base";
export interface MetafieldListOptions extends FieldOptions, DateOptions, ListOptions {
/**
* Shows metafields with given namespace
*/
namespace?: string;
/**
* The type of the value of the listed metafields
*/
value_type?: "string" | "integer";
}