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.
33 lines (27 loc) • 671 B
text/typescript
import { ShopifyObject } from "./base";
export interface ClientDetails extends ShopifyObject {
/**
* Shopify does not offer documentation for this field.
*/
accept_language: string | null;
/**
* The browser screen height in pixels, if available.
*/
browser_height: number | null;
/**
* The browser IP address.
*/
browser_ip: string;
/**
* The browser screen width in pixels, if available.
*/
browser_width: number | null;
/**
* A hash of the session.
*/
session_hash: string | null;
/**
* The browser's user agent string.
*/
user_agent: string;
}