class Google::Apis::GenomicsV2alpha1::TimestampedEvent

An event that occured in the operation assigned to the worker and the time of occurance.

Attributes

data[RW]

The event data. Corresponds to the JSON property `data` @return [Hash<String,Object>]

timestamp[RW]

The time when the event happened. Corresponds to the JSON property `timestamp` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/genomics_v2alpha1/classes.rb, line 1154
def update!(**args)
  @data = args[:data] if args.key?(:data)
  @timestamp = args[:timestamp] if args.key?(:timestamp)
end