mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
91d7e16c81
* 🔨 formatting nodes with prettier
10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
export interface IEcommerceProduct {
|
|
active?: string;
|
|
product_name?: string;
|
|
product_desc?: string;
|
|
product_price?: number;
|
|
product_short_desc?: string;
|
|
sku?: string;
|
|
subscription_only?: boolean;
|
|
}
|