class Google::Apis::DatastoreV1::GqlQueryParameter
A binding parameter for a GQL query.
Attributes
cursor[RW]
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. @return [String]
value[RW]
A message that can hold any of the supported value types and associated metadata. Corresponds to the JSON property `value` @return [Google::Apis::DatastoreV1::Value]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datastore_v1/classes.rb, line 1171 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/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