Class: Google::Apis::FirestoreV1::ListenRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirestoreV1::ListenRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/firestore_v1/classes.rb,
generated/google/apis/firestore_v1/representations.rb,
generated/google/apis/firestore_v1/representations.rb
Overview
A request for Firestore.Listen
Instance Attribute Summary collapse
-
#add_target ⇒ Google::Apis::FirestoreV1::Target
A specification of a set of documents to listen to.
-
#labels ⇒ Hash<String,String>
Labels associated with this target change.
-
#remove_target ⇒ Fixnum
The ID of a target to remove from this stream.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListenRequest
constructor
A new instance of ListenRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListenRequest
Returns a new instance of ListenRequest.
1633 1634 1635 |
# File 'generated/google/apis/firestore_v1/classes.rb', line 1633 def initialize(**args) update!(**args) end |
Instance Attribute Details
#add_target ⇒ Google::Apis::FirestoreV1::Target
A specification of a set of documents to listen to.
Corresponds to the JSON property addTarget
1621 1622 1623 |
# File 'generated/google/apis/firestore_v1/classes.rb', line 1621 def add_target @add_target end |
#labels ⇒ Hash<String,String>
Labels associated with this target change.
Corresponds to the JSON property labels
1626 1627 1628 |
# File 'generated/google/apis/firestore_v1/classes.rb', line 1626 def labels @labels end |
#remove_target ⇒ Fixnum
The ID of a target to remove from this stream.
Corresponds to the JSON property removeTarget
1631 1632 1633 |
# File 'generated/google/apis/firestore_v1/classes.rb', line 1631 def remove_target @remove_target end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1638 1639 1640 1641 1642 |
# File 'generated/google/apis/firestore_v1/classes.rb', line 1638 def update!(**args) @add_target = args[:add_target] if args.key?(:add_target) @labels = args[:labels] if args.key?(:labels) @remove_target = args[:remove_target] if args.key?(:remove_target) end |