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;
}