Class: Google::Apis::FirestoreV1::QueryTarget

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/firestore_v1/classes.rb,
lib/google/apis/firestore_v1/representations.rb,
lib/google/apis/firestore_v1/representations.rb

Overview

A target specified by a query.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ QueryTarget

Returns a new instance of QueryTarget.



2661
2662
2663
# File 'lib/google/apis/firestore_v1/classes.rb', line 2661

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#parentString

The parent resource name. In the format: projects/project_id/databases/ database_id/documents or projects/project_id/databases/database_id/ documents/document_path`. For example:projects/my-project/databases/my- database/documentsorprojects/my-project/databases/my-database/documents/ chatrooms/my-chatroom Corresponds to the JSON propertyparent`

Returns:

  • (String)


2654
2655
2656
# File 'lib/google/apis/firestore_v1/classes.rb', line 2654

def parent
  @parent
end

#structured_queryGoogle::Apis::FirestoreV1::StructuredQuery

A Firestore query. Corresponds to the JSON property structuredQuery



2659
2660
2661
# File 'lib/google/apis/firestore_v1/classes.rb', line 2659

def structured_query
  @structured_query
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2666
2667
2668
2669
# File 'lib/google/apis/firestore_v1/classes.rb', line 2666

def update!(**args)
  @parent = args[:parent] if args.key?(:parent)
  @structured_query = args[:structured_query] if args.key?(:structured_query)
end