mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
11 lines
206 B
TypeScript
11 lines
206 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;
|
||
|
}
|