pl4y-data-library
Version:
This library contains the dtos, enums, schemas, and other data objects needed in the pl4y ecosystem.
7 lines (6 loc) • 321 B
text/typescript
export enum ProductStatus {
ACTIVE = "ACTIVE", // Product is currently valid and available
INACTIVE = "INACTIVE", // Product is not available (e.g., discontinued or deactivated)
EXPIRED = "EXPIRED", // Product validity period has ended
UPCOMING = "UPCOMING", // Product validity period is in the future
}