Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaFetchDomainVerificationStatusResponse

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

Overview

Response message for SiteSearchEngineService.FetchDomainVerificationStatus method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaFetchDomainVerificationStatusResponse

Returns a new instance of GoogleCloudDiscoveryengineV1betaFetchDomainVerificationStatusResponse.



5575
5576
5577
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5575

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)


5562
5563
5564
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5562

def next_page_token
  @next_page_token
end

#target_sitesArray<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaTargetSite>

List of TargetSites containing the site verification status. Corresponds to the JSON property targetSites



5567
5568
5569
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5567

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)


5573
5574
5575
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5573

def total_size
  @total_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5580
5581
5582
5583
5584
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5580

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