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.



2130
2131
2132
# File 'lib/google/apis/datamanager_v1/classes.rb', line 2130

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)


2123
2124
2125
# File 'lib/google/apis/datamanager_v1/classes.rb', line 2123

def next_page_token
  @next_page_token
end

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



2128
2129
2130
# File 'lib/google/apis/datamanager_v1/classes.rb', line 2128

def partner_links
  @partner_links
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2135
2136
2137
2138
# File 'lib/google/apis/datamanager_v1/classes.rb', line 2135

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