Class: Google::Apis::FirebasemlV2beta::SafetyRating
- Inherits:
-
Object
- Object
- Google::Apis::FirebasemlV2beta::SafetyRating
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebaseml_v2beta/classes.rb,
lib/google/apis/firebaseml_v2beta/representations.rb,
lib/google/apis/firebaseml_v2beta/representations.rb
Overview
Safety rating corresponding to the generated content.
Instance Attribute Summary collapse
-
#blocked ⇒ Boolean
(also: #blocked?)
Output only.
-
#category ⇒ String
Output only.
-
#probability ⇒ String
Output only.
-
#probability_score ⇒ Float
Output only.
-
#severity ⇒ String
Output only.
-
#severity_score ⇒ Float
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SafetyRating
constructor
A new instance of SafetyRating.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SafetyRating
Returns a new instance of SafetyRating.
910 911 912 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 910 def initialize(**args) update!(**args) end |
Instance Attribute Details
#blocked ⇒ Boolean Also known as: blocked?
Output only. Indicates whether the content was filtered out because of this
rating.
Corresponds to the JSON property blocked
882 883 884 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 882 def blocked @blocked end |
#category ⇒ String
Output only. Harm category.
Corresponds to the JSON property category
888 889 890 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 888 def category @category end |
#probability ⇒ String
Output only. Harm probability levels in the content.
Corresponds to the JSON property probability
893 894 895 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 893 def probability @probability end |
#probability_score ⇒ Float
Output only. Harm probability score.
Corresponds to the JSON property probabilityScore
898 899 900 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 898 def probability_score @probability_score end |
#severity ⇒ String
Output only. Harm severity levels in the content.
Corresponds to the JSON property severity
903 904 905 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 903 def severity @severity end |
#severity_score ⇒ Float
Output only. Harm severity score.
Corresponds to the JSON property severityScore
908 909 910 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 908 def severity_score @severity_score end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
915 916 917 918 919 920 921 922 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 915 def update!(**args) @blocked = args[:blocked] if args.key?(:blocked) @category = args[:category] if args.key?(:category) @probability = args[:probability] if args.key?(:probability) @probability_score = args[:probability_score] if args.key?(:probability_score) @severity = args[:severity] if args.key?(:severity) @severity_score = args[:severity_score] if args.key?(:severity_score) end |