Class: Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1ListLinkedSourcesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1ListLinkedSourcesResponse
- 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.ListLinkedSources.
Instance Attribute Summary collapse
-
#document_links ⇒ Array<Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1DocumentLink>
Source 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) ⇒ GoogleCloudContentwarehouseV1ListLinkedSourcesResponse
constructor
A new instance of GoogleCloudContentwarehouseV1ListLinkedSourcesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContentwarehouseV1ListLinkedSourcesResponse
Returns a new instance of GoogleCloudContentwarehouseV1ListLinkedSourcesResponse.
2284 2285 2286 |
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 2284 def initialize(**args) update!(**args) end |
Instance Attribute Details
#document_links ⇒ Array<Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1DocumentLink>
Source document-links.
Corresponds to the JSON property documentLinks
2276 2277 2278 |
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 2276 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
2282 2283 2284 |
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 2282 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2289 2290 2291 2292 |
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 2289 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 |