Class: Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1ListLinkedTargetsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1ListLinkedTargetsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contentwarehouse_v1/classes.rb,
lib/google/apis/contentwarehouse_v1/representations.rb,
lib/google/apis/contentwarehouse_v1/representations.rb
Overview
Response message for DocumentLinkService.ListLinkedTargets.
Instance Attribute Summary collapse
-
#document_links ⇒ Array<Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1DocumentLink>
Target document-links.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContentwarehouseV1ListLinkedTargetsResponse
constructor
A new instance of GoogleCloudContentwarehouseV1ListLinkedTargetsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContentwarehouseV1ListLinkedTargetsResponse
Returns a new instance of GoogleCloudContentwarehouseV1ListLinkedTargetsResponse.
2329 2330 2331 |
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 2329 def initialize(**args) update!(**args) end |
Instance Attribute Details
#document_links ⇒ Array<Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1DocumentLink>
Target document-links.
Corresponds to the JSON property documentLinks
2321 2322 2323 |
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 2321 def document_links @document_links end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
2327 2328 2329 |
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 2327 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2334 2335 2336 2337 |
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 2334 def update!(**args) @document_links = args[:document_links] if args.key?(:document_links) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |