Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListTargetSitesResponse

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

Overview

Response message for SiteSearchEngineService.ListTargetSites method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaListTargetSitesResponse

Returns a new instance of GoogleCloudDiscoveryengineV1alphaListTargetSitesResponse.



4068
4069
4070
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4068

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

Instance Attribute Details

#next_page_tokenString

A token that 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)


4055
4056
4057
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4055

def next_page_token
  @next_page_token
end

#target_sitesArray<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaTargetSite>

List of TargetSites. Corresponds to the JSON property targetSites



4060
4061
4062
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4060

def target_sites
  @target_sites
end

#total_sizeFixnum

The total number of items matching the request. This will always be populated in the response. Corresponds to the JSON property totalSize

Returns:

  • (Fixnum)


4066
4067
4068
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4066

def total_size
  @total_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4073
4074
4075
4076
4077
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4073

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