class Google::Apis::PredictionV1_6::Analyze

Attributes

data_description[RW]

Description of the data the model was trained on. Corresponds to the JSON property `dataDescription` @return [Google::Apis::PredictionV1_6::Analyze::DataDescription]

errors[RW]

List of errors with the data. Corresponds to the JSON property `errors` @return [Array<Hash<String,String>>]

id[RW]

The unique name for the predictive model. Corresponds to the JSON property `id` @return [String]

kind[RW]

What kind of resource this is. Corresponds to the JSON property `kind` @return [String]

model_description[RW]

Description of the model. Corresponds to the JSON property `modelDescription` @return [Google::Apis::PredictionV1_6::Analyze::ModelDescription]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/prediction_v1_6/classes.rb, line 59
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/prediction_v1_6/classes.rb, line 64
def update!(**args)
  @data_description = args[:data_description] if args.key?(:data_description)
  @errors = args[:errors] if args.key?(:errors)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @model_description = args[:model_description] if args.key?(:model_description)
  @self_link = args[:self_link] if args.key?(:self_link)
end