1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-02-21 02:56:40 -08:00
n8n/packages/nodes-base/nodes/Keap/EcommerceProductInterface.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
205 B
TypeScript
Raw Normal View History

2020-04-01 15:10:41 -07:00
export interface IEcommerceProduct {
active?: string;
product_name?: string;
product_desc?: string;
product_price?: number;
product_short_desc?: string;
sku?: string;
subscription_only?: boolean;
}