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.



2950
2951
2952
# File 'lib/google/apis/datamanager_v1/classes.rb', line 2950

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)


2943
2944
2945
# File 'lib/google/apis/datamanager_v1/classes.rb', line 2943

def next_page_token
  @next_page_token
end

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



2948
2949
2950
# File 'lib/google/apis/datamanager_v1/classes.rb', line 2948

def partner_links
  @partner_links
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2955
2956
2957
2958
# File 'lib/google/apis/datamanager_v1/classes.rb', line 2955

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