class Google::Apis::GenomicsV1alpha2::TimestampEvent
Stores the list of events and times they occured for major events in job execution.
Attributes
description[RW]
String indicating the type of event Corresponds to the JSON property `description` @return [String]
timestamp[RW]
The time this event occured. Corresponds to the JSON property `timestamp` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/genomics_v1alpha2/classes.rb, line 1280 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_v1alpha2/classes.rb, line 1285 def update!(**args) @description = args[:description] if args.key?(:description) @timestamp = args[:timestamp] if args.key?(:timestamp) end