This method defines a property whose value can only be one of the specified values.
Code1import { model } from "@medusajs/framework/utils"2 3const MyCustom = model.define("my_custom", {4 color: model.enum(["black", "white"]),5 // ...6})7 8export default MyCustom
1import { model } from "@medusajs/framework/utils"2 3const MyCustom = model.define("my_custom", {4 color: model.enum(["black", "white"]),5 // ...6})7 8export default MyCustom
Values
string
values