class Google::Apis::SpannerV1::ResultSetMetadata

Metadata about a ResultSet or PartialResultSet.

Attributes

row_type[RW]

`StructType` defines the fields of a STRUCT type. Corresponds to the JSON property `rowType` @return [Google::Apis::SpannerV1::StructType]

transaction[RW]

A transaction. Corresponds to the JSON property `transaction` @return [Google::Apis::SpannerV1::Transaction]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/spanner_v1/classes.rb, line 3571
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/spanner_v1/classes.rb, line 3576
def update!(**args)
  @row_type = args[:row_type] if args.key?(:row_type)
  @transaction = args[:transaction] if args.key?(:transaction)
end