Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2Entity

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/videointelligence_v1/classes.rb,
lib/google/apis/videointelligence_v1/representations.rb,
lib/google/apis/videointelligence_v1/representations.rb

Overview

Detected entity from video analysis.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2Entity

Returns a new instance of GoogleCloudVideointelligenceV1beta2Entity.



1821
1822
1823
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 1821

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#descriptionString

Textual description, e.g., Fixed-gear bicycle. Corresponds to the JSON property description

Returns:

  • (String)


1808
1809
1810
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 1808

def description
  @description
end

#entity_idString

Opaque entity ID. Some IDs may be available in Google Knowledge Graph Search API. Corresponds to the JSON property entityId

Returns:

  • (String)


1814
1815
1816
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 1814

def entity_id
  @entity_id
end

#language_codeString

Language code for description in BCP-47 format. Corresponds to the JSON property languageCode

Returns:

  • (String)


1819
1820
1821
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 1819

def language_code
  @language_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1826
1827
1828
1829
1830
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 1826

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