Sign Up

Built-in Models

There are several built-in models provided by default:

  • Auth: Represents an Authentication object, which refers to a user stored in the authentication database.
  • File: Refers to a file or folder in the file store or a file being passed through an API call.
    • Folder paths end with a "/"
  • Key Value: A simple object that stores a text key and a reference to another object.
  • Form: Holds a list of key-value pairs.
  • Error: Used to handle situations when code throws an error or exception and typically contains an error message.
  • Http Request: Contains data used to send HTTP requests, such as path, method, and body.
  • Http Response: Returned from HTTP requests, it stores the return status and body.

Related Topics