ワンクリックで
defining-bindings
Bindings define the serialization and request networking footprint for your specific data model.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Bindings define the serialization and request networking footprint for your specific data model.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Understand how sources declare operation capabilities via supportedOperations and how SourceList respects them.
FirestoreAdminSource connects google_cloud_firestore for server-side Dart applications to a SourceList.
FirestoreSource seamlessly connects Cloud Firestore streams to a SourceList.
Perform untyped Firestore document merges using the raw method on Firestore sources.
Cached data is mapped uniquely per request hash (RequestDetails with specific filter and pagination), supporting a powerful request-based caching behavior.
The SourceList class manages the delegation of read/write attempts to various configured Sources, with a read-thru cache system prioritizing local Sources.
| name | defining-bindings |
| description | Bindings define the serialization and request networking footprint for your specific data model. |
| metadata | {"last_modified":"Sat, 18 Apr 2026 1:52:50 GMT"} |
final userBindings = Bindings<User>(
fromJson: User.fromJson,
toJson: (user) => user.toJson(),
getId: (user) => user.id,
);