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.
20 lines (19 loc) • 465 B
TypeScript
import { ShopifyObject } from './base';
export interface ProductOption extends ShopifyObject {
/**
* The unique numeric identifier for the product.
*/
product_id: number;
/**
* The name of the option.
*/
name: string;
/**
* The order of the product variant in the list of product variants. 1 is the first position.
*/
position: number;
/**
* The values for the options.
*/
values: string[];
}