Link Search Menu Expand Document

Number Field

Table of contents

  1. Example Usage
  2. Allowed Attributes
    1. Default
    2. Required
    3. Custom Name

Example Usage

const {Model, Field} = require("fireo");

class User extends Model{
    salary = Field.Number();
}

const u = User.init();
u.salary = 10000;

Allowed Attributes

The following attributes supported by Boolean Field.

  1. default
  2. required
  3. name
  • Default

    Default value for field. This is base attribute that is available in all fields. Read More

  • Required

    Set true if value is required for the field. This is base attribute that is available in all fields. Read More

  • Custom Name

    Set different name in Firestore instead of field name. This is base attribute that is available in all fields. Read More


Copyright © 2019 FireO All rights reserved. Powered by OctaByte