Class: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p2beta1Entity
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p2beta1Entity
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/videointelligence_v1p2beta1/classes.rb,
lib/google/apis/videointelligence_v1p2beta1/representations.rb,
lib/google/apis/videointelligence_v1p2beta1/representations.rb
Overview
Detected entity from video analysis.
Instance Attribute Summary collapse
-
#description ⇒ String
Textual description, e.g.,
Fixed-gear bicycle. -
#entity_id ⇒ String
Opaque entity ID.
-
#language_code ⇒ String
Language code for
descriptionin BCP-47 format.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p2beta1Entity
constructor
A new instance of GoogleCloudVideointelligenceV1p2beta1Entity.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p2beta1Entity
Returns a new instance of GoogleCloudVideointelligenceV1p2beta1Entity.
3784 3785 3786 |
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 3784 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Textual description, e.g., Fixed-gear bicycle.
Corresponds to the JSON property description
3771 3772 3773 |
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 3771 def description @description end |
#entity_id ⇒ String
Opaque entity ID. Some IDs may be available in Google Knowledge Graph Search
API.
Corresponds to the JSON property entityId
3777 3778 3779 |
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 3777 def entity_id @entity_id end |
#language_code ⇒ String
Language code for description in BCP-47 format.
Corresponds to the JSON property languageCode
3782 3783 3784 |
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 3782 def language_code @language_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3789 3790 3791 3792 3793 |
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 3789 def update!(**args) @description = args[:description] if args.key?(:description) @entity_id = args[:entity_id] if args.key?(:entity_id) @language_code = args[:language_code] if args.key?(:language_code) end |