ModelPermissionQueryType enum

Specifies the permission type for validation.

バリデーション用のパーミッションタイプを指定します。

Inheritance

Constructors

ModelPermissionQueryType()
const

Values

allowRead → const ModelPermissionQueryType

Allow all reads (documents and collections).

読み込み(ドキュメントおよびコレクション)をすべて許可します。

allowWrite → const ModelPermissionQueryType

Allows all writing (creating, updating, and deleting documents).

書き込み(ドキュメントの作成、更新、削除)をすべて許可します。

allowReadDocument → const ModelPermissionQueryType

Allows reading (documents).

If allowRead is specified, it takes precedence.

読み込み(ドキュメントのみ)を許可します。

allowReadが指定されている場合はそちらが優先されます。

allowReadCollection → const ModelPermissionQueryType

Allows reading (collections only).

If allowRead is specified, it takes precedence.

読み込み(コレクションのみ)を許可します。

allowReadが指定されている場合はそちらが優先されます。

allowCreate → const ModelPermissionQueryType

Allows all writing (creating, updating, and deleting documents).

書き込み(ドキュメントの作成、更新、削除)をすべて許可します。

allowUpdate → const ModelPermissionQueryType

Allows only document updates.

If allowWrite is specified, it takes precedence.

ドキュメントの更新のみを許可します。

allowWriteが指定されている場合はそちらが優先されます。

allowDelete → const ModelPermissionQueryType

Allows only document deletion.

If allowWrite is specified, it takes precedence.

ドキュメントの削除のみを許可します。

allowWriteが指定されている場合はそちらが優先されます。

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<ModelPermissionQueryType>
A constant List of the values in this enum, in order of their declaration.