Defines the entity name in the store
class User extends Model { static entity = 'users' static fields () { return { userId: this.attr(null) } }}
const entity: string = undefined
Model
casts()
mutators()