Class: Google::Apis::TranslateV3::GlossaryTermsSet

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

Overview

Represents a single entry for an equivalent term set glossary. This is used for equivalent term sets where each term can be replaced by the other terms in the set.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GlossaryTermsSet

Returns a new instance of GlossaryTermsSet.



889
890
891
# File 'lib/google/apis/translate_v3/classes.rb', line 889

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

Instance Attribute Details

#termsArray<Google::Apis::TranslateV3::GlossaryTerm>

Each term in the set represents a term that can be replaced by the other terms. Corresponds to the JSON property terms



887
888
889
# File 'lib/google/apis/translate_v3/classes.rb', line 887

def terms
  @terms
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



894
895
896
# File 'lib/google/apis/translate_v3/classes.rb', line 894

def update!(**args)
  @terms = args[:terms] if args.key?(:terms)
end