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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListenRequest
Returns a new instance of ListenRequest
1667 1668 1669 |
# File 'generated/google/apis/firestore_v1/classes.rb', line 1667 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
1655 1656 1657 |
# File 'generated/google/apis/firestore_v1/classes.rb', line 1655 def add_target @add_target end |
#labels ⇒ Hash<String,String>
Labels associated with this target change.
Corresponds to the JSON property labels
1660 1661 1662 |
# File 'generated/google/apis/firestore_v1/classes.rb', line 1660 def labels @labels end |
#remove_target ⇒ Fixnum
The ID of a target to remove from this stream.
Corresponds to the JSON property removeTarget
1665 1666 1667 |
# File 'generated/google/apis/firestore_v1/classes.rb', line 1665 def remove_target @remove_target end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1672 1673 1674 1675 1676 |
# File 'generated/google/apis/firestore_v1/classes.rb', line 1672 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 |