Class: Google::Apis::LanguageV1beta2::XpsTrainingObjectivePoint
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1beta2::XpsTrainingObjectivePoint
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/language_v1beta2/classes.rb,
lib/google/apis/language_v1beta2/representations.rb,
lib/google/apis/language_v1beta2/representations.rb
Instance Attribute Summary collapse
-
#create_time ⇒ String
The time at which this point was recorded.
-
#value ⇒ Float
The objective value when this point was recorded.
Instance Method Summary collapse
-
#initialize(**args) ⇒ XpsTrainingObjectivePoint
constructor
A new instance of XpsTrainingObjectivePoint.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ XpsTrainingObjectivePoint
Returns a new instance of XpsTrainingObjectivePoint.
4862 4863 4864 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 4862 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
The time at which this point was recorded.
Corresponds to the JSON property createTime
4855 4856 4857 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 4855 def create_time @create_time end |
#value ⇒ Float
The objective value when this point was recorded.
Corresponds to the JSON property value
4860 4861 4862 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 4860 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4867 4868 4869 4870 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 4867 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @value = args[:value] if args.key?(:value) end |