Class: Google::Apis::DatamanagerV1::SearchPartnerLinksResponse

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

Overview

Response from the SearchPartnerLinksRequest.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchPartnerLinksResponse

Returns a new instance of SearchPartnerLinksResponse.



3294
3295
3296
# File 'lib/google/apis/datamanager_v1/classes.rb', line 3294

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

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


3287
3288
3289
# File 'lib/google/apis/datamanager_v1/classes.rb', line 3287

def next_page_token
  @next_page_token
end

The partner links for the given account. Corresponds to the JSON property partnerLinks



3292
3293
3294
# File 'lib/google/apis/datamanager_v1/classes.rb', line 3292

def partner_links
  @partner_links
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3299
3300
3301
3302
# File 'lib/google/apis/datamanager_v1/classes.rb', line 3299

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @partner_links = args[:partner_links] if args.key?(:partner_links)
end