Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaFetchDomainVerificationStatusResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaFetchDomainVerificationStatusResponse
- 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
-
#next_page_token ⇒ String
A token that can be sent as
page_tokento retrieve the next page. -
#target_sites ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaTargetSite>
List of TargetSites containing the site verification status.
-
#total_size ⇒ Fixnum
The total number of items matching the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaFetchDomainVerificationStatusResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1betaFetchDomainVerificationStatusResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaFetchDomainVerificationStatusResponse
Returns a new instance of GoogleCloudDiscoveryengineV1betaFetchDomainVerificationStatusResponse.
4769 4770 4771 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4769 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
4756 4757 4758 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4756 def next_page_token @next_page_token end |
#target_sites ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaTargetSite>
List of TargetSites containing the site verification status.
Corresponds to the JSON property targetSites
4761 4762 4763 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4761 def target_sites @target_sites end |
#total_size ⇒ Fixnum
The total number of items matching the request. This will always be populated
in the response.
Corresponds to the JSON property totalSize
4767 4768 4769 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4767 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4774 4775 4776 4777 4778 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4774 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 |