Class: Google::Apis::TranslateV3::GlossaryEntry

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 in a glossary.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GlossaryEntry

Returns a new instance of GlossaryEntry.



789
790
791
# File 'lib/google/apis/translate_v3/classes.rb', line 789

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

Instance Attribute Details

#descriptionString

Describes the glossary entry. Corresponds to the JSON property description

Returns:

  • (String)


769
770
771
# File 'lib/google/apis/translate_v3/classes.rb', line 769

def description
  @description
end

#nameString

Required. The resource name of the entry. Format: "projects//locations// glossaries//glossaryEntries/" Corresponds to the JSON property name

Returns:

  • (String)


775
776
777
# File 'lib/google/apis/translate_v3/classes.rb', line 775

def name
  @name
end

#terms_pairGoogle::Apis::TranslateV3::GlossaryTermsPair

Represents a single entry for an unidirectional glossary. Corresponds to the JSON property termsPair



780
781
782
# File 'lib/google/apis/translate_v3/classes.rb', line 780

def terms_pair
  @terms_pair
end

#terms_setGoogle::Apis::TranslateV3::GlossaryTermsSet

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. Corresponds to the JSON property termsSet



787
788
789
# File 'lib/google/apis/translate_v3/classes.rb', line 787

def terms_set
  @terms_set
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



794
795
796
797
798
799
# File 'lib/google/apis/translate_v3/classes.rb', line 794

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @name = args[:name] if args.key?(:name)
  @terms_pair = args[:terms_pair] if args.key?(:terms_pair)
  @terms_set = args[:terms_set] if args.key?(:terms_set)
end