class Google::Apis::GenomicsV1::Event

Carries information about events that occur during pipeline execution.

Attributes

description[RW]

A human-readable description of the event. Note that these strings can change at any time without notice. Any application logic must use the information in the `details` field. Corresponds to the JSON property `description` @return [String]

details[RW]

Machine-readable details about the event. Corresponds to the JSON property `details` @return [Hash<String,Object>]

timestamp[RW]

The time at which the event occurred. Corresponds to the JSON property `timestamp` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/genomics_v1/classes.rb, line 385
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_v1/classes.rb, line 390
def update!(**args)
  @description = args[:description] if args.key?(:description)
  @details = args[:details] if args.key?(:details)
  @timestamp = args[:timestamp] if args.key?(:timestamp)
end