@tomei/product
Version:
NestJS package for product module
29 lines (28 loc) • 727 B
TypeScript
import { YN } from '../enum/yn.enum';
import { ProductVariantStatus, ProductVariantType } from '../enum/product-variant.enum';
export declare class IProductVariantAttr {
VariantId: string;
ProductId: string;
Name: string;
Description: string;
SKU: string;
Size?: string;
Colour?: string;
Type: ProductVariantType;
Level: number;
ParentId?: string;
MinWeight?: number;
MaxWeight?: number;
MinWidth?: number;
MaxWidth?: number;
MinHeight?: number;
MaxHeight?: number;
MinLength?: number;
MaxLength?: number;
Status: ProductVariantStatus;
CreatedById: string;
CreatedAt: Date;
UpdatedById: string;
UpdatedAt: Date;
UpdatedSSYN: YN;
}