Class: Google::Apis::BooksV1::DictLayerData::Dict::Word::Sense

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

Defined Under Namespace

Classes: Conjugation, Definition, Source, Synonym

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Sense

Returns a new instance of Sense.



1086
1087
1088
# File 'generated/google/apis/books_v1/classes.rb', line 1086

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

Instance Attribute Details

#conjugationsArray<Google::Apis::BooksV1::DictLayerData::Dict::Word::Sense::Conjugation>

Corresponds to the JSON property conjugations



1049
1050
1051
# File 'generated/google/apis/books_v1/classes.rb', line 1049

def conjugations
  @conjugations
end

#definitionsArray<Google::Apis::BooksV1::DictLayerData::Dict::Word::Sense::Definition>

Corresponds to the JSON property definitions



1054
1055
1056
# File 'generated/google/apis/books_v1/classes.rb', line 1054

def definitions
  @definitions
end

#part_of_speechString

Corresponds to the JSON property partOfSpeech

Returns:

  • (String)


1059
1060
1061
# File 'generated/google/apis/books_v1/classes.rb', line 1059

def part_of_speech
  @part_of_speech
end

#pronunciationString

Corresponds to the JSON property pronunciation

Returns:

  • (String)


1064
1065
1066
# File 'generated/google/apis/books_v1/classes.rb', line 1064

def pronunciation
  @pronunciation
end

#pronunciation_urlString

Corresponds to the JSON property pronunciationUrl

Returns:

  • (String)


1069
1070
1071
# File 'generated/google/apis/books_v1/classes.rb', line 1069

def pronunciation_url
  @pronunciation_url
end

#sourceGoogle::Apis::BooksV1::DictLayerData::Dict::Word::Sense::Source

Corresponds to the JSON property source



1074
1075
1076
# File 'generated/google/apis/books_v1/classes.rb', line 1074

def source
  @source
end

#syllabificationString

Corresponds to the JSON property syllabification

Returns:

  • (String)


1079
1080
1081
# File 'generated/google/apis/books_v1/classes.rb', line 1079

def syllabification
  @syllabification
end

#synonymsArray<Google::Apis::BooksV1::DictLayerData::Dict::Word::Sense::Synonym>

Corresponds to the JSON property synonyms



1084
1085
1086
# File 'generated/google/apis/books_v1/classes.rb', line 1084

def synonyms
  @synonyms
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
# File 'generated/google/apis/books_v1/classes.rb', line 1091

def update!(**args)
  @conjugations = args[:conjugations] if args.key?(:conjugations)
  @definitions = args[:definitions] if args.key?(:definitions)
  @part_of_speech = args[:part_of_speech] if args.key?(:part_of_speech)
  @pronunciation = args[:pronunciation] if args.key?(:pronunciation)
  @pronunciation_url = args[:pronunciation_url] if args.key?(:pronunciation_url)
  @source = args[:source] if args.key?(:source)
  @syllabification = args[:syllabification] if args.key?(:syllabification)
  @synonyms = args[:synonyms] if args.key?(:synonyms)
end