class Google::Apis::GenomicsV2alpha1::CheckInResponse
The response to the CheckIn method.
Attributes
deadline[RW]
The deadline by which the worker must request an extension. The backend will allow for network transmission time and other delays, but the worker must attempt to transmit the extension request no later than the deadline. Corresponds to the JSON property `deadline` @return [String]
features[RW]
Feature configuration for the operation. Corresponds to the JSON property `features` @return [Hash<String,Object>]
metadata[RW]
The metadata that describes the operation assigned to the worker. Corresponds to the JSON property `metadata` @return [Hash<String,Object>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/genomics_v2alpha1/classes.rb, line 286 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 291 def update!(**args) @deadline = args[:deadline] if args.key?(:deadline) @features = args[:features] if args.key?(:features) @metadata = args[:metadata] if args.key?(:metadata) end