class Google::Apis::MlV1::GoogleCloudMlV1SuggestTrialsMetadata
Metadata field of a google.longrunning.Operation associated with a SuggestTrialsRequest.
Attributes
client_id[RW]
The identifier of the client that is requesting the suggestion. Corresponds to the JSON property `clientId` @return [String]
create_time[RW]
The time operation was submitted. Corresponds to the JSON property `createTime` @return [String]
study[RW]
The name of the study that the trial belongs to. Corresponds to the JSON property `study` @return [String]
suggestion_count[RW]
The number of suggestions requested. Corresponds to the JSON property `suggestionCount` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/ml_v1/classes.rb, line 2535 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/ml_v1/classes.rb, line 2540 def update!(**args) @client_id = args[:client_id] if args.key?(:client_id) @create_time = args[:create_time] if args.key?(:create_time) @study = args[:study] if args.key?(:study) @suggestion_count = args[:suggestion_count] if args.key?(:suggestion_count) end