Product
Source: lyda-shared/src/Models/db/finance/Product.ts
Product
Type: interface
export interface Product {
id: number;
name: string;
description: string;
available: boolean;
image: string;
link: string;
url: string;
}
Properties
| Property | Type | Required | Description |
|---|---|---|---|
| id | number | Yes | - |
| name | string | Yes | - |
| description | string | Yes | - |
| available | boolean | Yes | - |
| image | string | Yes | - |
| link | string | Yes | - |
| url | string | Yes | - |