Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaFetchDomainVerificationStatusResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaFetchDomainVerificationStatusResponse
- 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.FetchDomainVerificationStatus method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token that can be sent as
page_token
to retrieve the next page. -
#target_sites ⇒ Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaTargetSite>
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) ⇒ GoogleCloudDiscoveryengineV1alphaFetchDomainVerificationStatusResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaFetchDomainVerificationStatusResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaFetchDomainVerificationStatusResponse
Returns a new instance of GoogleCloudDiscoveryengineV1alphaFetchDomainVerificationStatusResponse.
3352 3353 3354 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3352 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
3339 3340 3341 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3339 def next_page_token @next_page_token end |
#target_sites ⇒ Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaTargetSite>
List of TargetSites containing the site verification status.
Corresponds to the JSON property targetSites
3344 3345 3346 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3344 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
3350 3351 3352 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3350 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3357 3358 3359 3360 3361 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3357 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 |