Class: Google::Apis::DatastoreV1::GqlQueryParameter

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/datastore_v1/classes.rb,
generated/google/apis/datastore_v1/representations.rb,
generated/google/apis/datastore_v1/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.



1171
1172
1173
# File 'generated/google/apis/datastore_v1/classes.rb', line 1171

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)


1163
1164
1165
# File 'generated/google/apis/datastore_v1/classes.rb', line 1163

def cursor
  @cursor
end

#valueGoogle::Apis::DatastoreV1::Value

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



1169
1170
1171
# File 'generated/google/apis/datastore_v1/classes.rb', line 1169

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1176
1177
1178
1179
# File 'generated/google/apis/datastore_v1/classes.rb', line 1176

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