UNPKG

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.

16 lines (15 loc) 326 B
export interface Comment { id: number; body?: string; body_html: string; author: string; email: string; status: string; article_id: number; blog_id: number; created_at: string; updated_at: string; ip: string | null; user_agent: string | null; published_at: string | null; }