Class: Google::Apis::TranslateV3beta1::ListGlossariesResponse
- Inherits:
-
Object
- Object
- Google::Apis::TranslateV3beta1::ListGlossariesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/translate_v3beta1/classes.rb,
generated/google/apis/translate_v3beta1/representations.rb,
generated/google/apis/translate_v3beta1/representations.rb
Overview
Response message for ListGlossaries.
Instance Attribute Summary collapse
-
#glossaries ⇒ Array<Google::Apis::TranslateV3beta1::Glossary>
The list of glossaries for a project.
-
#next_page_token ⇒ String
A token to retrieve a page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListGlossariesResponse
constructor
A new instance of ListGlossariesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListGlossariesResponse
Returns a new instance of ListGlossariesResponse.
426 427 428 |
# File 'generated/google/apis/translate_v3beta1/classes.rb', line 426 def initialize(**args) update!(**args) end |
Instance Attribute Details
#glossaries ⇒ Array<Google::Apis::TranslateV3beta1::Glossary>
The list of glossaries for a project.
Corresponds to the JSON property glossaries
417 418 419 |
# File 'generated/google/apis/translate_v3beta1/classes.rb', line 417 def glossaries @glossaries end |
#next_page_token ⇒ String
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
424 425 426 |
# File 'generated/google/apis/translate_v3beta1/classes.rb', line 424 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
431 432 433 434 |
# File 'generated/google/apis/translate_v3beta1/classes.rb', line 431 def update!(**args) @glossaries = args[:glossaries] if args.key?(:glossaries) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |