Class: Google::Apis::DatastoreV1beta3::GqlQueryParameter

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

Overview

A binding parameter for a GQL query.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GqlQueryParameter

Returns a new instance of GqlQueryParameter.



1296
1297
1298
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1296

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

Instance Attribute Details

#cursorString

A query cursor. Query cursors are returned in query result batches. Corresponds to the JSON property cursor NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


1288
1289
1290
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1288

def cursor
  @cursor
end

#valueGoogle::Apis::DatastoreV1beta3::Value

A message that can hold any of the supported value types and associated metadata. Corresponds to the JSON property value



1294
1295
1296
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1294

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1301
1302
1303
1304
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1301

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