class Google::Apis::TranslateV3::ListGlossariesResponse

Response message for ListGlossaries.

Attributes

glossaries[RW]

The list of glossaries for a project. Corresponds to the JSON property `glossaries` @return [Array<Google::Apis::TranslateV3::Glossary>]

next_page_token[RW]

A token to retrieve a page of results. Pass this value in the [ ListGlossariesRequest.page_token] field in the subsequent call to ` ListGlossaries` method to retrieve the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/translate_v3/classes.rb, line 427
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/translate_v3/classes.rb, line 432
def update!(**args)
  @glossaries = args[:glossaries] if args.key?(:glossaries)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end