class Google::Apis::GenomicsV1alpha2::OperationEvent
An event that occurred during an Operation
.
Attributes
description[RW]
Required description of event. Corresponds to the JSON property `description` @return [String]
end_time[RW]
Optional time of when event finished. An event can have a start time and no finish time. If an event has a finish time, there must be a start time. Corresponds to the JSON property `endTime` @return [String]
start_time[RW]
Optional time of when event started. Corresponds to the JSON property `startTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/genomics_v1alpha2/classes.rb, line 619 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 624 def update!(**args) @description = args[:description] if args.key?(:description) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end