Learning Resources

boolean Property Method - API Reference

This method defines a boolean property.

Example#

Code
1import { model } from "@medusajs/utils"2
3const MyCustom = model.define("my_custom", {4  hasAccount: model.boolean(),5  // ...6})7
8export default MyCustom
Was this page helpful?